diff options
author | Jason Wright <jason@cvs.openbsd.org> | 1999-03-19 22:47:35 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 1999-03-19 22:47:35 +0000 |
commit | 23e9862bcd1cec2160166d253b928b0f12e59f0a (patch) | |
tree | f24ce1be271e475b806f70f4a79026ceef8ee7ea /sys/net/if_bridge.h | |
parent | 4ea62010d0d178dc752f170c8b7bf5464c5df47f (diff) |
Add flag to allow some interfaces to not see packets with unknown destination.
Diffstat (limited to 'sys/net/if_bridge.h')
-rw-r--r-- | sys/net/if_bridge.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/net/if_bridge.h b/sys/net/if_bridge.h index 6ebcccf5df1..ca4e89e34dc 100644 --- a/sys/net/if_bridge.h +++ b/sys/net/if_bridge.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.h,v 1.5 1999/03/19 02:46:54 jason Exp $ */ +/* $OpenBSD: if_bridge.h,v 1.6 1999/03/19 22:47:33 jason Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -40,7 +40,8 @@ struct ifbreq { u_int32_t ifbr_ifsflags; /* memver ifs flags */ }; -#define IFBIF_LEARNING 0x1 /* ifs can learn */ +#define IFBIF_LEARNING 0x1 /* ifs can learn */ +#define IFBIF_DISCOVER 0x2 /* ifs sends packets w/unknown dest */ /* * Interface list structure |