Deleted Added
full compact
bridgestp.h (163863) bridgestp.h (164141)
1/* $NetBSD: if_bridgevar.h,v 1.4 2003/07/08 07:13:50 itojun Exp $ */
2
3/*
4 * Copyright 2001 Wasabi Systems, Inc.
5 * All rights reserved.
6 *
7 * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8 *

--- 53 unchanged lines hidden (view full) ---

62 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
63 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
64 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
65 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
66 * POSSIBILITY OF SUCH DAMAGE.
67 *
68 * OpenBSD: if_bridge.h,v 1.14 2001/03/22 03:48:29 jason Exp
69 *
1/* $NetBSD: if_bridgevar.h,v 1.4 2003/07/08 07:13:50 itojun Exp $ */
2
3/*
4 * Copyright 2001 Wasabi Systems, Inc.
5 * All rights reserved.
6 *
7 * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8 *

--- 53 unchanged lines hidden (view full) ---

62 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
63 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
64 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
65 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
66 * POSSIBILITY OF SUCH DAMAGE.
67 *
68 * OpenBSD: if_bridge.h,v 1.14 2001/03/22 03:48:29 jason Exp
69 *
70 * $FreeBSD: head/sys/net/bridgestp.h 163863 2006-11-01 09:07:47Z thompsa $
70 * $FreeBSD: head/sys/net/bridgestp.h 164141 2006-11-09 22:50:49Z thompsa $
71 */
72
73/*
74 * Data structure and control definitions for STP interfaces.
75 */
76
77#include <sys/callout.h>
78#include <sys/queue.h>

--- 242 unchanged lines hidden (view full) ---

321 struct task bp_rtagetask;
322};
323
324/*
325 * Software state for each bridge STP.
326 */
327struct bstp_state {
328 LIST_ENTRY(bstp_state) bs_list;
71 */
72
73/*
74 * Data structure and control definitions for STP interfaces.
75 */
76
77#include <sys/callout.h>
78#include <sys/queue.h>

--- 242 unchanged lines hidden (view full) ---

321 struct task bp_rtagetask;
322};
323
324/*
325 * Software state for each bridge STP.
326 */
327struct bstp_state {
328 LIST_ENTRY(bstp_state) bs_list;
329 uint8_t bs_running;
329 struct mtx bs_mtx;
330 struct bstp_pri_vector bs_bridge_pv;
331 struct bstp_pri_vector bs_root_pv;
332 struct bstp_port *bs_root_port;
333 uint8_t bs_protover;
334 uint16_t bs_migration_delay;
335 uint16_t bs_edge_delay;
336 uint16_t bs_bridge_max_age;

--- 49 unchanged lines hidden ---
330 struct mtx bs_mtx;
331 struct bstp_pri_vector bs_bridge_pv;
332 struct bstp_pri_vector bs_root_pv;
333 struct bstp_port *bs_root_port;
334 uint8_t bs_protover;
335 uint16_t bs_migration_delay;
336 uint16_t bs_edge_delay;
337 uint16_t bs_bridge_max_age;

--- 49 unchanged lines hidden ---