- Kai Germaschewski: ISDN update (including Makefiles)
[davej-history.git] / include / linux / if_tun.h
blob5e0aa2420208600b1c1ca002f0009c6b8d5813df
1 /*
2 * Universal TUN/TAP device driver.
3 * Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>
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 of the License, or
8 * (at your option) any later version.
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.
15 * $Id: if_tun.h,v 1.1 2000/08/23 05:59:28 davem Exp $
18 #ifndef __IF_TUN_H
19 #define __IF_TUN_H
21 /* Uncomment to enable debugging */
22 /* #define TUN_DEBUG 1 */
24 #ifdef __KERNEL__
26 #ifdef TUN_DEBUG
27 #define DBG if(tun->debug)printk
28 #define DBG1 if(debug==2)printk
29 #else
30 #define DBG( a... )
31 #define DBG1( a... )
32 #endif
34 struct tun_struct {
35 char name[8];
36 unsigned long flags;
38 struct fasync_struct *fasync;
39 wait_queue_head_t read_wait;
41 struct net_device dev;
42 struct sk_buff_head txq;
43 struct net_device_stats stats;
45 #ifdef TUN_DEBUG
46 int debug;
47 #endif
50 #ifndef MIN
51 #define MIN(a,b) ( (a)<(b) ? (a):(b) )
52 #endif
54 #endif /* __KERNEL__ */
56 /* Number of devices */
57 #define TUN_MAX_DEV 255
59 /* TX queue size */
60 #define TUN_TXQ_SIZE 10
62 /* Max frame size */
63 #define TUN_MAX_FRAME 4096
65 /* TUN device flags */
66 #define TUN_TUN_DEV 0x0001
67 #define TUN_TAP_DEV 0x0002
68 #define TUN_TYPE_MASK 0x000f
70 #define TUN_FASYNC 0x0010
71 #define TUN_NOCHECKSUM 0x0020
72 #define TUN_NO_PI 0x0040
74 #define TUN_IFF_SET 0x1000
76 /* Ioctl defines */
77 #define TUNSETNOCSUM (('T'<< 8) | 200)
78 #define TUNSETDEBUG (('T'<< 8) | 201)
79 #define TUNSETIFF (('T'<< 8) | 202)
81 /* TUNSETIFF ifr flags */
82 #define IFF_TUN 0x0001
83 #define IFF_TAP 0x0002
84 #define IFF_NO_PI 0x1000
86 struct tun_pi {
87 unsigned short flags;
88 unsigned short proto;
90 #define TUN_PKT_STRIP 0x0001
92 #endif /* __IF_TUN_H */