diff options
author | bde <bde@FreeBSD.org> | 1998-01-10 07:29:10 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-01-10 07:29:10 +0000 |
commit | b2a951d0e41c9445aa8ea59b43bb476f45850c02 (patch) | |
tree | 0d0d1b119a0d86982882ee2fdb83b6986d48fcc0 | |
parent | ebe9c8eb7f01b66ce8c9fbe401aa6cea31bafcf9 (diff) | |
download | FreeBSD-src-b2a951d0e41c9445aa8ea59b43bb476f45850c02.zip FreeBSD-src-b2a951d0e41c9445aa8ea59b43bb476f45850c02.tar.gz |
Fixed change prerequisites for <net/if_arp.h>:
- don't declare `struct arpcom' except in the kernel, so that there is no
dependency on <net/if.h> except in the kernel. This may break something
else.
- spell ETHER_ADDR_LEN as 6 again, so that there is no dependency on
<net/ethernet.h> even in the kernel.
-rw-r--r-- | sys/net/if_arp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/net/if_arp.h b/sys/net/if_arp.h index cbf6cac..17439ff 100644 --- a/sys/net/if_arp.h +++ b/sys/net/if_arp.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_arp.h 8.1 (Berkeley) 6/10/93 - * $Id: if_arp.h,v 1.8 1997/02/22 09:40:59 peter Exp $ + * $Id: if_arp.h,v 1.9 1998/01/08 23:41:18 eivind Exp $ */ #ifndef _NET_IF_ARP_H_ @@ -88,6 +88,7 @@ struct arpreq { #define ATF_PUBL 0x08 /* publish entry (respond for other host) */ #define ATF_USETRAILERS 0x10 /* has requested trailers */ +#ifdef KERNEL /* * Structure shared between the ethernet driver modules and * the address resolution code. For example, each ec_softc or il_softc @@ -98,12 +99,11 @@ struct arpcom { * The ifnet struct _must_ be at the head of this structure. */ struct ifnet ac_if; /* network-visible interface */ - u_char ac_enaddr[ETHER_ADDR_LEN]; /* ethernet hardware address */ + u_char ac_enaddr[6]; /* ethernet hardware address */ int ac_multicnt; /* length of ac_multiaddrs list */ }; -#ifdef KERNEL -extern u_char etherbroadcastaddr[ETHER_ADDR_LEN]; +extern u_char etherbroadcastaddr[6]; #endif #endif /* !_NET_IF_ARP_H_ */ |