!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/src/linux-2.4.18-xfs-1.1/include/asm-mips/   drwxr-xr-x
Free 318.39 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:     rrm.h (1.78 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * SGI Rendering Resource Manager API (?).
 *
 * written by Miguel de Icaza (miguel@nuclecu.unam.mx)
 *
 * Ok, even if SGI choosed to do mmap trough ioctls, their
 * kernel support for virtualizing the graphics card is nice.
 *
 * We should be able to make graphic applications on Linux
 * fly.
 *
 * This header file should be included from GNU libc as well.
 */


/* Why like this you say?  Well, gdb can print enums */
#define RRM_BASE 1000
#define RRM_CMD_LIMIT (RRM_BASE + 100)

enum {
    RRM_OPENRN = RRM_BASE,    /* open rendering node */
    RRM_CLOSERN,
    RRM_BINDPROCTORN,    /* set current rendering region for node */
    RRM_BINDRNTOCLIP,
    RRM_UNBINDRNFROMCLIP,
    RRM_SWAPBUF,
    RRM_SETSWAPINTERVAL,
    RRM_WAITFORRETRACE,
    RRM_SETDISPLAYMODE,
    RRM_MESSAGE,
    RRM_INVALIDATERN,
    RRM_VALIDATECLIP,
    RRM_VALIDATESWAPBUF,
    RRM_SWAPGROUP,
    RRM_SWAPUNGROUP,
    RRM_VALIDATEMESSAGE,
    RRM_GETDISPLAYMODES,
    RRM_LOADDISPLAYMODE,
    RRM_CUSHIONBUFFER,
    RRM_SWAPREADY,
    RRM_MGR_SWAPBUF,
    RRM_SETVSYNC,
    RRM_GETVSYNC,
    RRM_WAITVSYNC,
    RRM_BINDRNTOREADANDCLIP,
    RRM_MAPCLIPTOSWPBUFID
};

/* Parameters for the above ioctls
 *
 * All of the ioctls take as their first argument the rendering node id.
 *
 */

/*
 * RRM_OPENRN:
 *
 * This is called by the IRIX X server with:
 * rnid = 0xffffffff rmask = 0
 *
 * Returns a number like this: 0x10001.
 * If you run the X server over and over, you get a value
 * that is of the form (n * 0x10000) + 1.
 *
 * The return value seems to be the RNID.
 */
struct RRM_OpenRN {
    int      rnid;
    unsigned int rmask;
};

struct RRM_CloseRN {
    int rnid;
};

/*
 * RRM_BINDPROCTORN:
 *
 * Return value when the X server calls it: 0
 */ 
struct RRM_BindProcToRN {
    int      rnid;
};

#ifdef __KERNEL__
int rrm_command (unsigned int cmd, void *arg);
int rrm_close (struct inode *inode, struct file *file);
#endif

:: 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.0045 ]--