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 $
21 /* Uncomment to enable debugging */
22 /* #define TUN_DEBUG 1 */
27 #define DBG if(tun->debug)printk
28 #define DBG1 if(debug==2)printk
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
;
51 #define MIN(a,b) ( (a)<(b) ? (a):(b) )
54 #endif /* __KERNEL__ */
56 /* Number of devices */
57 #define TUN_MAX_DEV 255
60 #define TUN_TXQ_SIZE 10
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
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
90 #define TUN_PKT_STRIP 0x0001
92 #endif /* __IF_TUN_H */