diff options
author | 2002-06-25 17:09:25 +0000 | |
---|---|---|
committer | 2002-06-25 17:09:25 +0000 | |
commit | 0d084b1ead16c04fc1c707cb40c747bd52d26eab (patch) | |
tree | 2207b7d7a16472a010f5c6525d3fe0458a59f45d | |
parent | protos and macros are only for _KERNEL, malliciously pollutes the user name space otherwise (diff) | |
download | wireguard-openbsd-0d084b1ead16c04fc1c707cb40c747bd52d26eab.tar.xz wireguard-openbsd-0d084b1ead16c04fc1c707cb40c747bd52d26eab.zip |
add ARP hardware type for IEEE1394
-rw-r--r-- | sys/net/if_arp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/if_arp.h b/sys/net/if_arp.h index 80247f02cd7..4b25ac88de1 100644 --- a/sys/net/if_arp.h +++ b/sys/net/if_arp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_arp.h,v 1.4 2001/06/09 06:16:37 angelos Exp $ */ +/* $OpenBSD: if_arp.h,v 1.5 2002/06/25 17:09:25 itojun Exp $ */ /* $NetBSD: if_arp.h,v 1.8 1995/03/08 02:56:52 cgd Exp $ */ /* @@ -53,6 +53,7 @@ struct arphdr { #define ARPHRD_ETHER 1 /* ethernet hardware format */ #define ARPHRD_IEEE802 6 /* IEEE 802 hardware format */ #define ARPHRD_FRELAY 15 /* frame relay hardware format */ +#define ARPHRD_IEEE1394 24 /* IEEE 1394 (FireWire) hardware format */ u_int16_t ar_pro; /* format of protocol address */ u_int8_t ar_hln; /* length of hardware address */ u_int8_t ar_pln; /* length of protocol address */ |