1 /* $Id: isdn_ppp.h,v 1.1 1996/01/10 21:39:10 fritz Exp fritz $ 2 * 3 * header for Linux ISDN subsystem, functions for synchronous PPP (linklevel). 4 * 5 * Copyright 1995,96 by Michael Hipp (Michael.Hipp@student.uni-tuebingen.de) 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; either version 2, or (at your option) 10 * any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with this program; if not, write to the Free Software 19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 * 21 * $Log: isdn_ppp.h,v $ 22 * Revision 1.1 1996/01/10 21:39:10 fritz 23 * Initial revision 24 * 25 */ 26
27 externvoidisdn_ppp_timer_timeout(void);
28 externintisdn_ppp_read(int , structfile *, char *, int);
29 externintisdn_ppp_write(int , structfile *, constchar *, int);
30 externintisdn_ppp_open(int , structfile *);
31 externintisdn_ppp_init(void);
32 externvoidisdn_ppp_cleanup(void);
33 externintisdn_ppp_free(isdn_net_local *);
34 externintisdn_ppp_bind(isdn_net_local *);
35 externintisdn_ppp_xmit(structsk_buff *, structdevice *);
36 externvoidisdn_ppp_receive(isdn_net_dev *, isdn_net_local *, structsk_buff *);
37 externintisdn_ppp_dev_ioctl(structdevice *, structifreq *, int);
38 externvoidisdn_ppp_free_mpqueue(isdn_net_dev *);
39 externintisdn_ppp_select(int, structfile *, int, select_table *);
40 externintisdn_ppp_ioctl(int, structfile *, unsignedint, unsignedlong);
41 externvoidisdn_ppp_release(int, structfile *);
42 externintisdn_ppp_dial_slave(char *);
43
44 externstructippp_struct *ippp_table;