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

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/usr/include/linux/   drwxr-xr-x
Free 3.33 GB of 27.03 GB (12.31%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ppp_channel.h (1.5 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef _PPP_CHANNEL_H_
#define _PPP_CHANNEL_H_
/*
* Definitions for the interface between the generic PPP code
* and a PPP channel.
*
* A PPP channel provides a way for the generic PPP code to send
* and receive packets over some sort of communications medium.
* Packets are stored in sk_buffs and have the 2-byte PPP protocol
* number at the start, but not the address and control bytes.
*
* Copyright 1999 Paul Mackerras.
*
*  This program is free software; you can redistribute it and/or
*  modify it under the terms of the GNU General Public License
*  as published by the Free Software Foundation; either version
*  2 of the License, or (at your option) any later version.
*
* ==FILEVERSION 20000322==
*/

#include <linux/list.h>
#include <linux/poll.h>

struct ppp_channel;

struct ppp_channel_ops {
    /* Send a packet (or multilink fragment) on this channel.
       Returns 1 if it was accepted, 0 if not. */
    int    (*start_xmit)(struct ppp_channel *, struct sk_buff *);
    /* Handle an ioctl call that has come in via /dev/ppp. */
    int    (*ioctl)(struct ppp_channel *, unsigned int, unsigned long);
};

struct ppp_channel {
    void        *private;    /* channel private data */
    struct ppp_channel_ops *ops;    /* operations for this channel */
    int        mtu;        /* max transmit packet size */
    int        hdrlen;        /* amount of headroom channel needs */
    void        *ppp;        /* opaque to channel */
    /* the following are not used at present */
    int        speed;        /* transfer rate (bytes/second) */
    int        latency;    /* overhead time in milliseconds */
};

#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 #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0031 ]--