diff options
Diffstat (limited to 'sys/netinet/ip_ether.h')
-rw-r--r-- | sys/netinet/ip_ether.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/netinet/ip_ether.h b/sys/netinet/ip_ether.h index c2372557bd6..3eca19bf521 100644 --- a/sys/netinet/ip_ether.h +++ b/sys/netinet/ip_ether.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ether.h,v 1.14 2007/12/14 18:33:41 deraadt Exp $ */ +/* $OpenBSD: ip_ether.h,v 1.15 2010/05/11 09:36:07 claudio Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@adk.gr) * @@ -64,6 +64,11 @@ struct etherip_header { } #ifdef _KERNEL +int etherip_output(struct mbuf *, struct tdb *, struct mbuf **, int); +void etherip_input(struct mbuf *, ...); +#ifdef INET6 +int etherip_input6(struct mbuf **, int *, int); +#endif int etherip_sysctl(int *, u_int, void *, size_t *, void *, size_t); extern int etherip_allow; |