diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-12-09 15:05:52 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-12-09 15:05:52 +0000 |
commit | fe34e17de73b14c56470724c46d4792218bbb1be (patch) | |
tree | 6fb2e540fd7e8a6ae1b03c64c45279d123257062 /sys/net | |
parent | 0ddba886ef365de169ad7fb6bc2e428c6411354d (diff) |
Keep all ether prototypes in one place.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_var.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sys/net/if_var.h b/sys/net/if_var.h index d98abe02300..6718862349e 100644 --- a/sys/net/if_var.h +++ b/sys/net/if_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_var.h,v 1.67 2015/12/09 03:22:39 dlg Exp $ */ +/* $OpenBSD: if_var.h,v 1.68 2015/12/09 15:05:51 mpi Exp $ */ /* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */ /* @@ -74,7 +74,6 @@ struct rtentry; struct timeout; -struct arpcom; struct ifnet; struct task; @@ -302,15 +301,6 @@ int if_input_local(struct ifnet *, struct mbuf *, sa_family_t); void if_rtrequest_dummy(struct ifnet *, int, struct rtentry *); void p2p_rtrequest(struct ifnet *, int, struct rtentry *); -void ether_ifattach(struct ifnet *); -void ether_ifdetach(struct ifnet *); -int ether_ioctl(struct ifnet *, struct arpcom *, u_long, caddr_t); -int ether_input(struct ifnet *, struct mbuf *, void *); -int ether_output(struct ifnet *, - struct mbuf *, struct sockaddr *, struct rtentry *); -void ether_rtrequest(struct ifnet *, int, struct rtentry *); -char *ether_sprintf(u_char *); - struct ifaddr *ifa_ifwithaddr(struct sockaddr *, u_int); struct ifaddr *ifa_ifwithdstaddr(struct sockaddr *, u_int); struct ifaddr *ifa_ifwithnet(struct sockaddr *, u_int); |