diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-12-26 09:12:47 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-12-26 09:12:47 +0000 |
commit | 06a857e12b22fe61aabb374561d14950c3743a7e (patch) | |
tree | 8be070a4544cdeec53e29846f85ea2e4d2ed7d19 /sys | |
parent | acfb0f911133039043a61e860b62c6b97f54ebd5 (diff) |
Add ioctls for enc bridge.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/sockio.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/sys/sockio.h b/sys/sys/sockio.h index a037802bad9..35b2471be55 100644 --- a/sys/sys/sockio.h +++ b/sys/sys/sockio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sockio.h,v 1.10 1999/12/08 06:50:24 itojun Exp $ */ +/* $OpenBSD: sockio.h,v 1.11 1999/12/26 09:12:46 angelos Exp $ */ /* $NetBSD: sockio.h,v 1.5 1995/08/23 00:40:47 thorpej Exp $ */ /*- @@ -107,9 +107,11 @@ #define SIOCBRDGDADDR _IOWR('i', 71, struct ifbareq) /* delete addr */ #define SIOCBRDGFLUSH _IOWR('i', 72, struct ifbreq) /* flush addr cache */ +#define SIOCGIFSA _IOWR('i', 73, struct ifsa) /* get enc sa */ +#define SIOCSIFSA _IOW('i', 74, struct ifsa) /* set enc sa */ + #define SIOCSIFMTU _IOW('i', 127, struct ifreq) /* set ifnet mtu */ #define SIOCGIFMTU _IOWR('i', 126, struct ifreq) /* get ifnet mtu */ #define SIOCSIFASYNCMAP _IOW('i', 125, struct ifreq) /* set ppp asyncmap */ #define SIOCGIFASYNCMAP _IOWR('i', 124, struct ifreq) /* get ppp asyncmap */ - #endif /* !_SYS_SOCKIO_H_ */ |