diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2021-11-11 10:03:11 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2021-11-11 10:03:11 +0000 |
commit | 9636fcc99541ea83f25e9e2e8ba7df7de34bef6b (patch) | |
tree | 5deecb8f926c922a3fd4dd62f1fba46676ff24ae /sys/net/if_bridge.h | |
parent | 99f1fa30c5cf6ba62b86fc642746c19b42b47aaa (diff) |
Retire switch(4) it never really was production ready and the OpenFlow
API implemented is a deadend.
OK akoshibe@ yasuoka@ deraadt@ kn@ patrick@ sthen@
Diffstat (limited to 'sys/net/if_bridge.h')
-rw-r--r-- | sys/net/if_bridge.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/net/if_bridge.h b/sys/net/if_bridge.h index ed384bed9f1..6fa74c878ad 100644 --- a/sys/net/if_bridge.h +++ b/sys/net/if_bridge.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.h,v 1.72 2021/03/10 10:21:47 jsg Exp $ */ +/* $OpenBSD: if_bridge.h,v 1.73 2021/11/11 10:03:10 claudio Exp $ */ /* * Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net) @@ -155,8 +155,6 @@ struct ifbrparam { u_int8_t ifbrpu_maxage; /* max age (sec) */ u_int8_t ifbrpu_proto; /* bridge protocol */ u_int8_t ifbrpu_txhc; /* bpdu tx holdcount */ - u_int64_t ifbrpu_datapath; /* datapath-id */ - u_int32_t ifbrpu_maxgroup; /* group size */ } ifbrp_ifbrpu; }; #define ifbrp_csize ifbrp_ifbrpu.ifbrpu_csize @@ -167,9 +165,6 @@ struct ifbrparam { #define ifbrp_hellotime ifbrp_ifbrpu.ifbrpu_hellotime #define ifbrp_fwddelay ifbrp_ifbrpu.ifbrpu_fwddelay #define ifbrp_maxage ifbrp_ifbrpu.ifbrpu_maxage -#define ifbrp_datapath ifbrp_ifbrpu.ifbrpu_datapath -#define ifbrp_maxflow ifbrp_ifbrpu.ifbrpu_csize -#define ifbrp_maxgroup ifbrp_ifbrpu.ifbrpu_maxgroup /* Protocol versions */ #define BSTP_PROTO_ID 0x00 |