MFC r280998:

arp(8): add support for printing and deleting entries of type
IFT_INFINIBAND, used in IPoIB.

PR:	151594
This commit is contained in:
markj 2015-04-12 21:28:54 +00:00
parent 75ef967474
commit 6c5bc954a5

View File

@ -282,6 +282,7 @@ valid_type(int type)
switch (type) {
case IFT_ETHER:
case IFT_FDDI:
case IFT_INFINIBAND:
case IFT_ISO88023:
case IFT_ISO88024:
case IFT_ISO88025:
@ -656,6 +657,9 @@ print_entry(struct sockaddr_dl *sdl,
case IFT_BRIDGE:
printf(" [bridge]");
break;
case IFT_INFINIBAND:
printf(" [infiniband]");
break;
default:
break;
}