!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/drivers/isdn/hisax/   drwxr-xr-x
Free 318.29 GB of 458.09 GB (69.48%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     hisax_if.h (1.39 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * Interface between low level (hardware) drivers and 
 * HiSax protocol stack
 *
 * Author       Kai Germaschewski
 * Copyright    2001 by Kai Germaschewski  <kai.germaschewski@gmx.de>
 * 
 * This software may be used and distributed according to the terms
 * of the GNU General Public License, incorporated herein by reference.
 *
 */

#ifndef __HISAX_IF_H__
#define __HISAX_IF_H__

#include <linux/skbuff.h>

#define REQUEST        0
#define CONFIRM        1
#define INDICATION    2
#define RESPONSE    3

#define PH_ACTIVATE    0x0100
#define PH_DEACTIVATE    0x0110
#define PH_DATA        0x0120
#define PH_PULL        0x0130
#define PH_DATA_E    0x0140

#define L1_MODE_NULL    0
#define L1_MODE_TRANS    1
#define L1_MODE_HDLC    2
#define L1_MODE_EXTRN    3
#define L1_MODE_HDLC_56K 4
#define L1_MODE_MODEM    7
#define L1_MODE_V32    8
#define L1_MODE_FAX    9

struct hisax_if {
    void *priv; // private to driver
    void (*l1l2)(struct hisax_if *, int pr, void *arg);
    void (*l2l1)(struct hisax_if *, int pr, void *arg);
};

struct hisax_b_if {
    struct hisax_if ifc;

    // private to hisax
    struct BCState *bcs;
};

struct hisax_d_if {
    struct hisax_if ifc;

    // private to hisax
    struct module *owner;
    struct IsdnCardState *cs;
    struct hisax_b_if *b_if[2];
    struct sk_buff_head erq;
    long ph_state;
};

int hisax_register(struct hisax_d_if *hisax_if, struct hisax_b_if *b_if[],
           char *name, int protocol);
void hisax_unregister(struct hisax_d_if *hisax_if);

#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.0812 ]--