diff options
author | 2018-11-29 00:11:23 +0000 | |
---|---|---|
committer | 2018-11-29 00:11:23 +0000 | |
commit | 5c3e514c3c98853130c17e2391b6869848ea184d (patch) | |
tree | a159a6fbe8308956feaaa75aef749913efaf7290 | |
parent | sync (diff) | |
download | wireguard-openbsd-5c3e514c3c98853130c17e2391b6869848ea184d.tar.xz wireguard-openbsd-5c3e514c3c98853130c17e2391b6869848ea184d.zip |
allow configuration of ecn propagation on tunnel interfaces.
ok claudio@
-rw-r--r-- | sys/sys/sockio.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/sys/sockio.h b/sys/sys/sockio.h index f9ad81f0b55..923875a3540 100644 --- a/sys/sys/sockio.h +++ b/sys/sys/sockio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sockio.h,v 1.77 2018/11/12 23:32:42 dlg Exp $ */ +/* $OpenBSD: sockio.h,v 1.78 2018/11/29 00:11:23 dlg Exp $ */ /* $NetBSD: sockio.h,v 1.5 1995/08/23 00:40:47 thorpej Exp $ */ /*- @@ -201,6 +201,9 @@ #define SIOCSTXHPRIO _IOW('i', 197, struct ifreq) /* set tx hdr prio */ #define SIOCGTXHPRIO _IOWR('i', 198, struct ifreq) /* get tx hdr prio */ +#define SIOCSLIFPHYECN _IOW('i', 199, struct ifreq) /* set ecn copying */ +#define SIOCGLIFPHYECN _IOWR('i', 200, struct ifreq) /* get ecn copying */ + #define SIOCSVH _IOWR('i', 245, struct ifreq) /* set carp param */ #define SIOCGVH _IOWR('i', 246, struct ifreq) /* get carp param */ |