1 extern int isdn_ppp_dial_slave(char *);
2
3 struct pppinfo
4 {
5 int type;
6 union {
7 char clid[32];
8 int bundles;
9 int linknumber;
10 } info;
11 };
12
13
14 #define PPPIOCLINKINFO _IOWR('t',128,struct pppinfo)
15 #define PPPIOCBUNDLE _IOW('t',129,int)
16 #define PPPIOCGMPFLAGS _IOR('t',130,int)
17 #define PPPIOCSMPFLAGS _IOW('t',131,int)
18 #define PPPIOCSMPMTU _IOW('t',132,int)
19 #define PPPIOCSMPMRU _IOW('t',133,int)
20
21 #define PPP_MP 0x003d
22
23 #define SC_MP_PROT 0x00000200
24 #define SC_REJ_MP_PROT 0x00000400
25 #define SC_OUT_SHORT_SEQ 0x00000800
26 #define SC_IN_SHORT_SEQ 0x00004000
27
28 #define MP_END_FRAG 0x40
29 #define MP_BEGIN_FRAG 0x80
30