!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/X11R6/include/X11/extensions/   drwxr-xr-x
Free 318.35 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     record.h (5.83 KB)      -r--r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* 
$Xorg: record.h,v 1.3 2000/08/18 04:05:46 coskrey Exp $
*/

/***************************************************************************
 * Copyright 1995 Network Computing Devices
 *
 * Permission to use, copy, modify, distribute, and sell this software and
 * its documentation for any purpose is hereby granted without fee, provided
 * that the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation, and that the name of Network Computing Devices 
 * not be used in advertising or publicity pertaining to distribution
 * of the software without specific, written prior permission.
 *
 * NETWORK COMPUTING DEVICES DISCLAIMs ALL WARRANTIES WITH REGARD TO 
 * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 
 * AND FITNESS, IN NO EVENT SHALL NETWORK COMPUTING DEVICES BE LIABLE 
 * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN 
 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING 
 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 **************************************************************************/
#ifndef _RECORD_H_
#define _RECORD_H_

#define XRecordBadContext       0    /* Not a valid RC */

/*
 * Constants for arguments of various requests
 */
#define    XRecordFromServerTime        0x01
#define    XRecordFromClientTime        0x02
#define    XRecordFromClientSequence    0x04

#define XRecordCurrentClients        1
#define XRecordFutureClients        2
#define XRecordAllClients        3

#define XRecordFromServer               0
#define XRecordFromClient               1
#define XRecordClientStarted               2
#define XRecordClientDied               3
#define XRecordStartOfData        4
#define XRecordEndOfData        5

typedef unsigned long   XRecordClientSpec;

#ifndef _XRECORD_SERVER_

typedef unsigned long     XRecordContext;

typedef struct
{
    unsigned char     first;
    unsigned char     last;
} XRecordRange8;

typedef struct
{
    unsigned short     first;
    unsigned short     last;
} XRecordRange16; 

typedef struct
{
    XRecordRange8    ext_major;
    XRecordRange16     ext_minor; 
} XRecordExtRange; 

typedef struct
{
    XRecordRange8     core_requests;    /* core X requests */
    XRecordRange8     core_replies;    /* core X replies */
    XRecordExtRange   ext_requests;    /* extension requests */
    XRecordExtRange   ext_replies;    /* extension replies */
    XRecordRange8     delivered_events;    /* delivered core and ext events */
    XRecordRange8     device_events;     /* all core and ext device events */
    XRecordRange8     errors;        /* core X and ext errors */
    Bool          client_started;    /* connection setup reply */
    Bool              client_died;     /* notice of client disconnect */    
} XRecordRange;

typedef struct
{
    XRecordClientSpec     client;
    unsigned long     nranges; 
    XRecordRange     **ranges;
} XRecordClientInfo;

typedef struct
{
    Bool         enabled;
    int            datum_flags; 
    unsigned long     nclients; 
    XRecordClientInfo     **client_info;
} XRecordState;

typedef struct
{
    XID         id_base;
    Time        server_time; 
    unsigned long     client_seq;
    int            category; 
    Bool         client_swapped;
    unsigned char     *data;
    unsigned long     data_len;    /* in 4-byte units */
} XRecordInterceptData;

_XFUNCPROTOBEGIN

/*********************************************************
 *
 * Prototypes 
 *
 */

XID XRecordIdBaseMask(
#if NeedFunctionPrototypes
    Display *dpy
#endif
);

extern Status XRecordQueryVersion(
#if NeedFunctionPrototypes
    Display*             /* dpy */,
    int*             /* cmajor_return */, 
    int*            /* cminor_return */  
#endif
);

extern XRecordContext XRecordCreateContext(
#if NeedFunctionPrototypes
    Display*            /* dpy */, 
    int                /* datum_flags */, 
    XRecordClientSpec*        /* clients */,
    int                /* nclients */,     
    XRecordRange**              /* ranges */,
    int                /* nranges */
#endif
);

extern XRecordRange *XRecordAllocRange(
#if NeedFunctionPrototypes
    void
#endif
);

extern Status XRecordRegisterClients(
#if NeedFunctionPrototypes
    Display*             /* dpy */, 
    XRecordContext         /* context */, 
    int                /* datum_flags */,
    XRecordClientSpec*        /* clients */,
    int                /* nclients */, 
    XRecordRange**         /* ranges */,  
    int                /* nranges */
#endif
);

extern Status XRecordUnregisterClients(
#if NeedFunctionPrototypes
    Display*             /* dpy */, 
    XRecordContext         /* context */, 
    XRecordClientSpec*        /* clients */,
    int                /* nclients */ 
#endif
);

extern Status XRecordGetContext(
#if NeedFunctionPrototypes
    Display*            /* dpy */,
    XRecordContext         /* context */, 
    XRecordState**         /* state_return */ 
#endif
);

extern void XRecordFreeState(
#if NeedFunctionPrototypes
XRecordState*            /* state */
#endif
); 

typedef void (*XRecordInterceptProc) (
#if NeedFunctionPrototypes
    XPointer            /* closure */, 
    XRecordInterceptData*    /* recorded_data */
#endif
);

extern Status XRecordEnableContext(
#if NeedFunctionPrototypes
    Display*            /* dpy */,
    XRecordContext         /* context */, 
    XRecordInterceptProc    /* callback */,
    XPointer            /* closure */
#endif
); 

extern Status XRecordEnableContextAsync(
#if NeedFunctionPrototypes
    Display*            /* dpy */,
    XRecordContext         /* context */, 
    XRecordInterceptProc    /* callback */,
    XPointer            /* closure */
#endif
); 

extern void XRecordProcessReplies(
#if NeedFunctionPrototypes
    Display*            /* dpy */
#endif
); 

extern void XRecordFreeData(
#if NeedFunctionPrototypes
XRecordInterceptData*    /* data */
#endif
); 

extern Status XRecordDisableContext(
#if NeedFunctionPrototypes
    Display*            /* dpy */,
    XRecordContext         /* context */
#endif
); 

extern Status XRecordFreeContext(
#if NeedFunctionPrototypes
    Display*             /* dpy */, 
    XRecordContext         /* context */
#endif
);

_XFUNCPROTOEND

#endif /* _XRECORD_SERVER_ */

#endif /* _RECORD_H_ */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0162 ]--