!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/include/linux/   drwxr-xr-x
Free 318.37 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:     devpts_fs.h (1.84 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* -*- linux-c -*- --------------------------------------------------------- *
 *
 * linux/include/linux/devpts_fs.h
 *
 *  Copyright 1998 H. Peter Anvin -- All Rights Reserved
 *
 * This file is part of the Linux kernel and is made available under
 * the terms of the GNU General Public License, version 2, or at your
 * option, any later version, incorporated herein by reference.
 *
 * ------------------------------------------------------------------------- */

/*
 * Prototypes for the pty driver <-> devpts filesystem interface.  Most
 * of this is really just a hack so we can exclude it or build it as a
 * module, and probably should go away eventually.
 */

#ifndef _LINUX_DEVPTS_FS_H
#define _LINUX_DEVPTS_FS_H 1

#include <linux/config.h>
#include <linux/kdev_t.h>
#include <linux/tty.h>

#ifdef CONFIG_DEVPTS_FS

void devpts_pty_new(int, kdev_t);
void devpts_pty_kill(int);
#define unix98_max_ptys               NR_PTYS * UNIX98_NR_MAJORS;

#elif defined(CONFIG_DEVPTS_FS_MODULE)

#ifdef BUILDING_PTY_C
void (*devpts_upcall_new)(int,kdev_t) = NULL;
void (*devpts_upcall_kill)(int)       = NULL;
unsigned int unix98_max_ptys          = NR_PTYS * UNIX98_NR_MAJORS;

EXPORT_SYMBOL(devpts_upcall_new);
EXPORT_SYMBOL(devpts_upcall_kill);
EXPORT_SYMBOL(unix98_max_ptys);
#else
extern void (*devpts_upcall_new)(int,kdev_t);
extern void (*devpts_upcall_kill)(int);
extern unsigned int unix98_max_ptys;
#endif

#ifndef BUILDING_DEVPTS
static inline void
devpts_pty_new(int line, kdev_t device)
{
    if ( devpts_upcall_new )
        return devpts_upcall_new(line,device);
}

static inline void
devpts_pty_kill(int line)
{
    if ( devpts_upcall_kill )
        return devpts_upcall_kill(line);
}
#endif

#else  /* No /dev/pts filesystem at all */

static inline void
devpts_pty_new(int line, kdev_t device) { }

static inline void
devpts_pty_kill(int line) { }

#endif

#endif /* _LINUX_DEVPTS_FS_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.0045 ]--