diff options
author | 1999-08-08 02:42:58 +0000 | |
---|---|---|
committer | 1999-08-08 02:42:58 +0000 | |
commit | 6b8c169e65a94ec5f8ac81cd3d6f370d769e2c8c (patch) | |
tree | 7f78ca04fef97372ba1743652d40775a3237e51a /sys/net/if_bridge.h | |
parent | reserve majors for isdn4bsd (diff) | |
download | wireguard-openbsd-6b8c169e65a94ec5f8ac81cd3d6f370d769e2c8c.tar.xz wireguard-openbsd-6b8c169e65a94ec5f8ac81cd3d6f370d769e2c8c.zip |
Fix cases when wanting to communicate with the bridge'
s remote interfaces, both ARP and local delivery had bugs
Diffstat (limited to 'sys/net/if_bridge.h')
-rw-r--r-- | sys/net/if_bridge.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_bridge.h b/sys/net/if_bridge.h index 227aca32b4f..ee193e94dff 100644 --- a/sys/net/if_bridge.h +++ b/sys/net/if_bridge.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.h,v 1.7 1999/08/08 00:43:00 niklas Exp $ */ +/* $OpenBSD: if_bridge.h,v 1.8 1999/08/08 02:42:58 niklas Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -103,7 +103,7 @@ struct ifbcachetoreq { #ifdef _KERNEL void bridge_ifdetach __P((struct ifnet *)); struct mbuf *bridge_input __P((struct ifnet *, struct ether_header *, - struct mbuf *)); + struct mbuf *, int *)); int bridge_output __P((struct ifnet *, struct mbuf *, struct sockaddr *, struct rtentry *rt)); #endif /* _KERNEL */ |