Lines Matching full:bridge
2 * @brief Ethernet Bridge public header file
47 /* The actual bridge virtual interface */
56 /* Bridge instance id */
59 /* Is the bridge interface initialized */
62 /* Has user configured the bridge */
72 * @brief Add an Ethernet network interface to a bridge
74 * This adds a network interface to a bridge. The interface is then put
76 * added to the bridge interface, the bridge interface is setup.
77 * After the setup is done, the bridge interface can be brought up so
80 * @param br A pointer to a bridge interface
88 * @brief Remove an Ethernet network interface from a bridge.
90 * If the bridge interface setup has only one Ethernet interface left
91 * after this function call, the bridge is disabled as it cannot bridge
92 * the L2 traffic any more. The bridge interface is left in UP state
95 * @param br A pointer to a bridge interface
103 * @brief Get bridge index according to pointer
105 * @param br Pointer to bridge instance
107 * @return Bridge index
112 * @brief Get bridge instance according to index
114 * @param index Bridge instance index
116 * @return Pointer to bridge interface or NULL if not found.
122 * @brief Callback used while iterating over bridge instances
124 * @param br Pointer to bridge context instance
130 * @brief Go through all the bridge context instances in order to get
134 * @param cb Callback to call for each bridge instance