mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
- add appropriate string for arp header #32 for use by ip(8)
This commit is contained in:
parent
f3b778a4dc
commit
dff6190112
@ -21,6 +21,9 @@ const char *ll_type_n2a(int type, char *buf, int len)
|
||||
/* 0, */ "generic" "\0"
|
||||
/* ARPHRD_LOOPBACK, */ "loopback" "\0"
|
||||
/* ARPHRD_ETHER, */ "ether" "\0"
|
||||
#ifdef ARPHRD_INFINIBAND
|
||||
/* ARPHRD_INFINIBAND, */ "infiniband" "\0"
|
||||
#endif
|
||||
#ifdef ARPHRD_IEEE802_TR
|
||||
/* ARPHRD_IEEE802, */ "ieee802" "\0"
|
||||
/* ARPHRD_IEEE802_TR, */ "tr" "\0"
|
||||
@ -107,6 +110,9 @@ const char *ll_type_n2a(int type, char *buf, int len)
|
||||
0, /* "generic" "\0" */
|
||||
ARPHRD_LOOPBACK, /* "loopback" "\0" */
|
||||
ARPHRD_ETHER, /* "ether" "\0" */
|
||||
#ifdef ARPHRD_INFINIBAND
|
||||
ARPHRD_INFINIBAND, /* "infiniband" "\0" */
|
||||
#endif
|
||||
#ifdef ARPHRD_IEEE802_TR
|
||||
ARPHRD_IEEE802, /* "ieee802" "\0" */
|
||||
ARPHRD_IEEE802_TR, /* "tr" "\0" */
|
||||
|
Loading…
Reference in New Issue
Block a user