]> the.earth.li Git - mqtt-arp.git/commitdiff
Silently drop RTM_DELNEIGH/RTM_GETNEIGH messages
authorJonathan McDowell <noodles@earth.li>
Mon, 11 Jun 2018 20:36:15 +0000 (21:36 +0100)
committerJonathan McDowell <noodles@earth.li>
Mon, 11 Jun 2018 20:36:15 +0000 (21:36 +0100)
Rather than printing that we don't understand these messages, silently
drop them.

mqtt-arp.c

index ba977b424ca6883c7a6983326c2eca73d1ad8489..71d8567e39653ca73b2fc75b5d70eebdc676ca02 100644 (file)
@@ -210,6 +210,7 @@ void main_loop(struct ma_config *config, struct mosquitto *mosq, int sock)
                        break;
                case RTM_DELNEIGH:
                case RTM_GETNEIGH:
+                       break;
                default:
                        printf("Unknown message type: %d\n", hdr->nlmsg_type);
                }