opnsense-ports/net/libnet/files/patch-src-libnet_link_bpf.c
Franco Fichtner a737ce6b05 */*: sync previously available, but unused ports
Taken from: FreeBSD
2015-04-22 06:45:04 +02:00

32 lines
1.1 KiB
C

- Make libnet_get_hwaddr() work with 802.1q interfaces in bpf (BSD).
Obtained from: https://github.com/sam-github/libnet/commit/408fa2266a4af402152cc0f1e9a40b56477b995a
--- src/libnet_link_bpf.c.orig 2012-03-20 00:59:50.000000000 +0800
+++ src/libnet_link_bpf.c 2015-01-18 03:09:08.169400000 +0800
@@ -316,7 +316,11 @@
if (ifm->ifm_type == RTM_IFINFO)
{
sdl = (struct sockaddr_dl *)(ifm + 1);
- if (sdl->sdl_type != IFT_ETHER)
+ if (sdl->sdl_type != IFT_ETHER
+ && sdl->sdl_type != IFT_FASTETHER
+ && sdl->sdl_type != IFT_FASTETHERFX
+ && sdl->sdl_type != IFT_GIGABITETHERNET
+ && sdl->sdl_type != IFT_L2VLAN)
continue;
if (strncmp(&sdl->sdl_data[0], l->device, sdl->sdl_nlen) == 0)
{
@@ -326,6 +330,12 @@
}
}
free(buf);
+ if (next == end) {
+ snprintf(l->err_buf, LIBNET_ERRBUF_SIZE,
+ "%s(): interface %s of known type not found.",
+ __func__, l->device);
+ return NULL;
+ }
return (&ea);
}