diff options
author | bde <bde@FreeBSD.org> | 1995-12-16 03:43:49 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-12-16 03:43:49 +0000 |
commit | 7a94f9e2c9cb1ff2f44c718e7699ef8a906e0133 (patch) | |
tree | d222032d92fe2b89603bed93703d130ffd87097f /sys/netipx | |
parent | 38101d0da2e7aa1216775dcee1e8e486f63465eb (diff) | |
download | FreeBSD-src-7a94f9e2c9cb1ff2f44c718e7699ef8a906e0133.zip FreeBSD-src-7a94f9e2c9cb1ff2f44c718e7699ef8a906e0133.tar.gz |
Oops, forgot to update this to match pr_ctlinput.
Added comment about bogus LOMTU.
Diffstat (limited to 'sys/netipx')
-rw-r--r-- | sys/netipx/ipx_ip.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netipx/ipx_ip.h b/sys/netipx/ipx_ip.h index 833110c..ead13fe 100644 --- a/sys/netipx/ipx_ip.h +++ b/sys/netipx/ipx_ip.h @@ -33,7 +33,7 @@ * * @(#)ipxip.h * - * $Id: ipx_ip.h,v 1.3 1995/11/04 09:03:03 julian Exp $ + * $Id: ipx_ip.h,v 1.4 1995/11/24 12:25:07 bde Exp $ */ #ifndef _NETIPX_IPXIP_H_ @@ -47,7 +47,7 @@ struct ifnet_en { struct ifnet_en *ifen_next; }; -#define LOMTU (1024+512); +#define LOMTU (1024+512) /* XXX this is TINY_LOMTU */ #ifdef KERNEL @@ -56,7 +56,7 @@ extern struct ifnet_en *ipxip_list; struct ifnet_en * ipxipattach __P((void)); -void ipxip_ctlinput __P((int cmd, struct sockaddr *sa)); +void ipxip_ctlinput __P((int cmd, struct sockaddr *sa, void *arg)); int ipxip_free __P((struct ifnet *ifp)); void ipxip_input __P((struct mbuf *m, struct ifnet *ifp)); int ipxipioctl __P((struct ifnet *ifp, int cmd, caddr_t data)); |