Home | History | Annotate | Line # | Download | only in net
if_tun.h revision 1.13.4.1
      1  1.13.4.1    rpaulo /*	$NetBSD: if_tun.h,v 1.13.4.1 2006/09/09 02:58:06 rpaulo Exp $	*/
      2       1.5       cgd 
      3       1.1   deraadt /*
      4       1.2   deraadt  * Copyright (c) 1988, Julian Onions <jpo (at) cs.nott.ac.uk>
      5       1.2   deraadt  * Nottingham University 1987.
      6       1.1   deraadt  *
      7       1.1   deraadt  * This source may be freely distributed, however I would be interested
      8       1.1   deraadt  * in any changes that are made.
      9       1.1   deraadt  *
     10       1.2   deraadt  * This driver takes packets off the IP i/f and hands them up to a
     11       1.2   deraadt  * user process to have it's wicked way with. This driver has it's
     12       1.2   deraadt  * roots in a similar driver written by Phil Cockcroft (formerly) at
     13       1.2   deraadt  * UCL. This driver is based much more on read/write/select mode of
     14       1.2   deraadt  * operation though.
     15      1.12     perry  *
     16       1.7     perry  * from: Header: if_tnreg.h,v 1.1.2.1 1992/07/16 22:39:16 friedl Exp
     17       1.1   deraadt  */
     18       1.1   deraadt 
     19       1.1   deraadt #ifndef _NET_IF_TUN_H_
     20       1.1   deraadt #define _NET_IF_TUN_H_
     21       1.1   deraadt 
     22       1.8        tv #ifdef _KERNEL
     23       1.1   deraadt struct tun_softc {
     24      1.10    atatat 	struct	ifnet tun_if;		/* the interface */
     25      1.10    atatat 
     26       1.1   deraadt 	u_short	tun_flags;		/* misc flags */
     27       1.1   deraadt #define	TUN_OPEN	0x0001
     28       1.1   deraadt #define	TUN_INITED	0x0002
     29       1.1   deraadt #define	TUN_RCOLL	0x0004
     30       1.1   deraadt #define	TUN_IASET	0x0008
     31       1.1   deraadt #define	TUN_DSTADDR	0x0010
     32       1.1   deraadt #define	TUN_RWAIT	0x0040
     33       1.1   deraadt #define	TUN_ASYNC	0x0080
     34       1.1   deraadt #define	TUN_NBIO	0x0100
     35       1.6        pk #define	TUN_PREPADDR	0x0200
     36  1.13.4.1    rpaulo #define	TUN_IFHEAD	0x0400
     37       1.4   deraadt 
     38       1.4   deraadt #define	TUN_READY	(TUN_OPEN | TUN_INITED | TUN_IASET)
     39       1.4   deraadt 
     40      1.11  jdolecek 	pid_t	tun_pgid;		/* PID or process group ID */
     41       1.1   deraadt 	struct	selinfo	tun_rsel;	/* read select */
     42       1.1   deraadt 	struct	selinfo	tun_wsel;	/* write select (not used) */
     43      1.10    atatat 	int	tun_unit;		/* the tunnel unit number */
     44      1.10    atatat 	struct	simplelock tun_lock;	/* lock for this tunnel */
     45      1.10    atatat 	LIST_ENTRY(tun_softc) tun_list;	/* list of all tuns */
     46       1.1   deraadt };
     47       1.8        tv #endif	/* _KERNEL */
     48       1.1   deraadt 
     49       1.1   deraadt /* Maximum packet size */
     50       1.3   deraadt #define	TUNMTU		1500
     51       1.1   deraadt 
     52       1.1   deraadt /* ioctl's for get/set debug */
     53       1.1   deraadt #define	TUNSDEBUG	_IOW('t', 90, int)
     54       1.1   deraadt #define	TUNGDEBUG	_IOR('t', 89, int)
     55       1.6        pk #define	TUNSIFMODE	_IOW('t', 88, int)
     56       1.6        pk #define	TUNSLMODE	_IOW('t', 87, int)
     57  1.13.4.1    rpaulo #define	TUNSIFHEAD	_IOW('t', 66, int)
     58  1.13.4.1    rpaulo #define	TUNGIFHEAD	_IOR('t', 65, int)
     59       1.1   deraadt 
     60       1.1   deraadt #endif /* !_NET_IF_TUN_H_ */
     61