diff options
author | jhay <jhay@FreeBSD.org> | 1997-05-10 09:58:58 +0000 |
---|---|---|
committer | jhay <jhay@FreeBSD.org> | 1997-05-10 09:58:58 +0000 |
commit | 0993d64164c5645de9b918e293cd3ae73cc6eeab (patch) | |
tree | 1020b5e960a3798c25dbbee04af310936411983a /sys/netipx/ipx_if.h | |
parent | d166039f66bb01a24268ecef1ad2038d00c72a4d (diff) | |
download | FreeBSD-src-0993d64164c5645de9b918e293cd3ae73cc6eeab.zip FreeBSD-src-0993d64164c5645de9b918e293cd3ae73cc6eeab.tar.gz |
Mega IPX commit.
Use the MAC address of an interface for the host part of an IPX address
and not the MAC address of the first interface for every IPX address.
This is more inline with the way others like Novell do it.
Mostly Submitted by: "Serge A. Babkin" <babkin@hq.icb.chel.su>
Take out the error messages (the ip icmp equivalent) with #ifdef IPXERRORMSGS.
This is bogus and as far as I could figure out IPX don't have anything like
it. This is a leftover from its XNS heritage. If nobody complains, I will
take it out completely in a few weeks.
Add some more ipxstat statistics counters.
Make ipxprintfs a sysctl variable and off by default.
Add IPX Netbios "routing" support. This is off by default and can be
switched on with a sysctl knob.
General code cleanup to at least use the same style throughout the IPX
code, but also be more style(9) conformant. Also make a lot of functions
static.
If I don't get any complaints I'll bring all of this over to the 2.2 tree
in a few weeks.
Diffstat (limited to 'sys/netipx/ipx_if.h')
-rw-r--r-- | sys/netipx/ipx_if.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/sys/netipx/ipx_if.h b/sys/netipx/ipx_if.h index 02437ba..4ced196 100644 --- a/sys/netipx/ipx_if.h +++ b/sys/netipx/ipx_if.h @@ -33,7 +33,7 @@ * * @(#)ipx_if.h * - * $Id$ + * $Id: ipx_if.h,v 1.7 1997/02/22 09:41:53 peter Exp $ */ #ifndef _NETIPX_IPX_IF_H_ @@ -91,11 +91,7 @@ struct ipxip_req { extern struct ifqueue ipxintrq; /* IPX input packet queue */ extern struct ipx_ifaddr *ipx_ifaddr; -struct ipx_ifaddr * - ipx_iaonnetof __P((struct ipx_addr *dst)); -int ipx_ifinit __P((struct ifnet *ifp, struct ipx_ifaddr *ia, - struct sockaddr_ipx *sipx, int scrub)); -void ipx_ifscrub __P((struct ifnet *ifp, struct ipx_ifaddr *ia)); -#endif +struct ipx_ifaddr *ipx_iaonnetof __P((struct ipx_addr *dst)); +#endif /* KERNEL */ -#endif /* !_NETIPX_IPX_IF_H_ */ +#endif /* _NETIPX_IPX_IF_H_ */ |