diff options
| author | 2016-05-18 20:15:14 +0000 | |
|---|---|---|
| committer | 2016-05-18 20:15:14 +0000 | |
| commit | 5a411d3cd0812c0dd09bca91defe59a3a500a33e (patch) | |
| tree | 32be377457840e724ccbfba3935e7e3063148552 /sys/netinet/if_ether.h | |
| parent | Document MODQT_LRELEASE (diff) | |
| download | wireguard-openbsd-5a411d3cd0812c0dd09bca91defe59a3a500a33e.tar.xz wireguard-openbsd-5a411d3cd0812c0dd09bca91defe59a3a500a33e.zip | |
Remove some superflous if_get(9)/if_put(9) dances now that ARP input
routines are call directly by ether_input().
ok visa@, dlg@
Diffstat (limited to 'sys/netinet/if_ether.h')
| -rw-r--r-- | sys/netinet/if_ether.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/if_ether.h b/sys/netinet/if_ether.h index a6e5fc1bd01..56e52bd79fa 100644 --- a/sys/netinet/if_ether.h +++ b/sys/netinet/if_ether.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.h,v 1.70 2016/03/30 10:13:14 mpi Exp $ */ +/* $OpenBSD: if_ether.h,v 1.71 2016/05/18 20:15:14 mpi Exp $ */ /* $NetBSD: if_ether.h,v 1.22 1996/05/11 13:00:00 mycroft Exp $ */ /* @@ -211,12 +211,12 @@ extern u_int8_t ether_ipmulticast_max[ETHER_ADDR_LEN]; extern unsigned int revarp_ifidx; #endif /* NFSCLIENT */ -void revarpinput(struct mbuf *); +void revarpinput(struct ifnet *, struct mbuf *); void revarprequest(struct ifnet *); int revarpwhoarewe(struct ifnet *, struct in_addr *, struct in_addr *); int revarpwhoami(struct in_addr *, struct ifnet *); -void arpinput(struct mbuf *); +void arpinput(struct ifnet *, struct mbuf *); void arprequest(struct ifnet *, u_int32_t *, u_int32_t *, u_int8_t *); void arpwhohas(struct arpcom *, struct in_addr *); int arpproxy(struct in_addr, unsigned int); |
