1 /* $Id: isdn_x25iface.h,v 1.3 2000/05/11 22:29:21 kai Exp $
2
3 * header for Linux ISDN subsystem, x.25 related functions
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 */
20
21 #ifndef _LINUX_ISDN_X25IFACE_H
22 #define _LINUX_ISDN_X25IFACE_H
23
24 #define ISDN_X25IFACE_MAGIC 0x1e75a2b9
25 /* #define DEBUG_ISDN_X25 if you want isdn_x25 debugging messages */
26 #ifdef DEBUG_ISDN_X25
27 # define IX25DEBUG(fmt,args...) printk(KERN_DEBUG fmt , ## args)
28 #else
29 # define IX25DEBUG(fmt,args...)
30 #endif
31
32 #include <linux/skbuff.h>
33 #include <linux/wanrouter.h>
34 #include <linux/isdn.h>
35 #include <linux/concap.h>
36
37 extern struct concap_proto_ops * isdn_x25iface_concap_proto_ops_pt;
38 extern struct concap_proto * isdn_x25iface_proto_new(void);
39
40
41
42 #endif
43
44
45
46
47
48
49
50
51
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.