summaryrefslogtreecommitdiffstats
path: root/sys/netinet/if_ether.c
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>2004-06-13 10:54:36 +0000
committerdfr <dfr@FreeBSD.org>2004-06-13 10:54:36 +0000
commita1fa8042f5e49d1e07a282f98704243b2620baad (patch)
treef9ff797a413f188d7a3cfe59c9ce64b4963e6b1b /sys/netinet/if_ether.c
parent394bdac7dcbab39d03e0a5cdac350d93c81e71d3 (diff)
downloadFreeBSD-src-a1fa8042f5e49d1e07a282f98704243b2620baad.zip
FreeBSD-src-a1fa8042f5e49d1e07a282f98704243b2620baad.tar.gz
Add a new driver to support IP over firewire. This driver is intended to
conform to the rfc2734 and rfc3146 standard for IP over firewire and should eventually supercede the fwe driver. Right now the broadcast channel number is hardwired and we don't support MCAP for multicast channel allocation - more infrastructure is required in the firewire code itself to fix these problems.
Diffstat (limited to 'sys/netinet/if_ether.c')
-rw-r--r--sys/netinet/if_ether.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c
index b24d562..b392168 100644
--- a/sys/netinet/if_ether.c
+++ b/sys/netinet/if_ether.c
@@ -460,7 +460,8 @@ arpintr(struct mbuf *m)
if (ntohs(ar->ar_hrd) != ARPHRD_ETHER &&
ntohs(ar->ar_hrd) != ARPHRD_IEEE802 &&
- ntohs(ar->ar_hrd) != ARPHRD_ARCNET) {
+ ntohs(ar->ar_hrd) != ARPHRD_ARCNET &&
+ ntohs(ar->ar_hrd) != ARPHRD_IEEE1394) {
log(LOG_ERR, "arp: unknown hardware address format (0x%2D)\n",
(unsigned char *)&ar->ar_hrd, "");
m_freem(m);
OpenPOWER on IntegriCloud