mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-17 08:38:42 +00:00
Ignore unknown netlink events.
Bird sometimes reported 'bird: nl_parse_link: Malformed message received'. The cause is that bird asynchronously received netlink packet from wireless driver about some wireless event on its link layer. In that case bird shouldn't complain.
This commit is contained in:
parent
44cb1449ed
commit
d7f3b30649
@ -268,7 +268,8 @@ nl_parse_link(struct nlmsghdr *h, int scan)
|
||||
if (!a[IFLA_IFNAME] || RTA_PAYLOAD(a[IFLA_IFNAME]) < 2 ||
|
||||
!a[IFLA_MTU] || RTA_PAYLOAD(a[IFLA_MTU]) != 4)
|
||||
{
|
||||
log(L_ERR "nl_parse_link: Malformed message received");
|
||||
if (scan)
|
||||
log(L_ERR "nl_parse_link: Malformed message received");
|
||||
return;
|
||||
}
|
||||
name = RTA_DATA(a[IFLA_IFNAME]);
|
||||
|
Loading…
Reference in New Issue
Block a user