Lines Matching +full:display +full:- +full:bridge
4 * SPDX-License-Identifier: BSD-4-Clause
20 * must display the following acknowledgement:
53 * must display the following acknowledgement:
74 * Data structure and control definitions for bridge interfaces.
87 * bridge interface itself is keyed off the ifdrv structure.
89 #define BRDGADD 0 /* add bridge member (ifbreq) */
90 #define BRDGDEL 1 /* delete bridge member (ifbreq) */
113 #define BRDGADDS 23 /* add bridge span member (ifbreq) */
114 #define BRDGDELS 24 /* delete bridge span member (ifbreq) */
115 #define BRDGPARAM 25 /* get bridge STP params (ifbropreq) */
124 * Generic bridge control request.
181 * Bridge address request.
212 * Bridge parameter structure.
223 #define ifbrp_prio ifbrp_ifbrpu.ifbrpu_int16 /* bridge priority */
224 #define ifbrp_proto ifbrp_ifbrpu.ifbrpu_int8 /* bridge protocol */
232 * Bridge current operational parameters structure.
250 * Bridge member operational STP params structure.
257 uint64_t ifbp_design_bridge; /* bp STP designated bridge */
262 * Bridge STP ports list structure.
284 "-", \
307 KASSERT((_ifp)->if_bridge_input != NULL, \
309 _m = (*(_ifp)->if_bridge_input)(_ifp, _m); \
311 _ifp = _m->m_pkthdr.rcvif; \
312 m->m_flags &= ~M_BRIDGE_INJECT; \
317 KASSERT((_ifp)->if_bridge_output != NULL, \
319 _err = (*(_ifp)->if_bridge_output)(_ifp, _m, NULL, NULL); \