diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2018-12-07 16:19:41 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2018-12-07 16:19:41 +0000 |
commit | eea6921e003b8ef07cacf2567731f814bef838ac (patch) | |
tree | 1b59e184ff146514a9b6b93e07ab877f4de482fa /sys/net/if_bridge.h | |
parent | 48748121e40c948fb0dc3195fc781ed26e16029c (diff) |
Stop passing `sc' when it isn't needed and use `ifp' where it's good
enough.
ok sthen@, visa@
Diffstat (limited to 'sys/net/if_bridge.h')
-rw-r--r-- | sys/net/if_bridge.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/sys/net/if_bridge.h b/sys/net/if_bridge.h index abb5d643bf6..505aa0243fc 100644 --- a/sys/net/if_bridge.h +++ b/sys/net/if_bridge.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.h,v 1.57 2018/02/08 13:15:32 mpi Exp $ */ +/* $OpenBSD: if_bridge.h,v 1.58 2018/12/07 16:19:40 mpi Exp $ */ /* * Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net) @@ -504,8 +504,6 @@ struct mbuf *bstp_input(struct bstp_state *, struct bstp_port *, void bstp_ifstate(void *); u_int8_t bstp_getstate(struct bstp_state *, struct bstp_port *); void bstp_ifsflags(struct bstp_port *, u_int); -void bridge_send_icmp_err(struct bridge_softc *, struct ifnet *, - struct ether_header *, struct mbuf *, int, struct llc *, int, int, int); int bridgectl_ioctl(struct ifnet *, u_long, caddr_t); struct ifnet *bridge_rtupdate(struct bridge_softc *, @@ -519,11 +517,8 @@ u_int8_t bridge_filterrule(struct brl_head *, struct ether_header *, struct mbuf *); void bridge_flushrule(struct bridge_iflist *); -struct mbuf *bridge_ip(struct bridge_softc *, int, struct ifnet *, - struct ether_header *, struct mbuf *); -void bridge_fragment(struct bridge_softc *, struct ifnet *, - struct ether_header *, struct mbuf *); -int bridge_ifenqueue(struct bridge_softc *, struct ifnet *, struct mbuf *); +void bridge_fragment(struct ifnet *, struct ifnet *, struct ether_header *, + struct mbuf *); #endif /* _KERNEL */ #endif /* _NET_IF_BRIDGE_H_ */ |