diff options
author | des <des@FreeBSD.org> | 1999-03-24 21:20:12 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 1999-03-24 21:20:12 +0000 |
commit | c42abfb1fe46d89d8c6bffc17aa69c778f17e2b4 (patch) | |
tree | c4fb14cf123bef01355ac24ff5ed246251c8e011 /sys/net/if_tun.h | |
parent | 16fa182f0f1cc1f668faf444396a1c821dd7291e (diff) | |
download | FreeBSD-src-c42abfb1fe46d89d8c6bffc17aa69c778f17e2b4.zip FreeBSD-src-c42abfb1fe46d89d8c6bffc17aa69c778f17e2b4.tar.gz |
Implement TUNSIFMODE and TUNSLMODE.
Submitted by: Alfred Perlstein <bright@cygnus.rush.net>
Diffstat (limited to 'sys/net/if_tun.h')
-rw-r--r-- | sys/net/if_tun.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/net/if_tun.h b/sys/net/if_tun.h index 3173085..1a1fa64 100644 --- a/sys/net/if_tun.h +++ b/sys/net/if_tun.h @@ -13,7 +13,7 @@ * UCL. This driver is based much more on read/write/select mode of * operation though. * - * $Id: if_tun.h,v 1.12 1998/01/26 19:52:34 brian Exp $ + * $Id: if_tun.h,v 1.13 1998/04/17 22:36:56 des Exp $ */ #ifndef _NET_IF_TUN_H_ @@ -39,5 +39,7 @@ struct tuninfo { #define TUNGDEBUG _IOR('t', 89, int) #define TUNSIFINFO _IOW('t', 91, struct tuninfo) #define TUNGIFINFO _IOR('t', 92, struct tuninfo) +#define TUNSLMODE _IOW('t', 93, int) +#define TUNSIFMODE _IOW('t', 94, int) #endif /* !_NET_IF_TUN_H_ */ |