diff options
author | Jason Wright <jason@cvs.openbsd.org> | 1999-03-19 02:46:56 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 1999-03-19 02:46:56 +0000 |
commit | e851ae564f648165b1455149fbc4294d49050b11 (patch) | |
tree | d47352fc8da30b766a10ac3464263b5fd581353c /sys/net/if_bridge.h | |
parent | 590d0602794e98ae6b4e17a4792d79b06f61d42b (diff) |
Add the ability to mark an interface as "non-learning"
Diffstat (limited to 'sys/net/if_bridge.h')
-rw-r--r-- | sys/net/if_bridge.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/net/if_bridge.h b/sys/net/if_bridge.h index 7838fdf2c6f..6ebcccf5df1 100644 --- a/sys/net/if_bridge.h +++ b/sys/net/if_bridge.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.h,v 1.4 1999/03/12 02:40:43 jason Exp $ */ +/* $OpenBSD: if_bridge.h,v 1.5 1999/03/19 02:46:54 jason Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -40,6 +40,8 @@ struct ifbreq { u_int32_t ifbr_ifsflags; /* memver ifs flags */ }; +#define IFBIF_LEARNING 0x1 /* ifs can learn */ + /* * Interface list structure */ |