Commit 435b0c6a authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Ignore unicast Hellos (for now).

parent 0111f5c1
......@@ -438,6 +438,9 @@ parse_packet(const unsigned char *from, struct interface *ifp,
&timestamp, &have_timestamp);
if(rc < 0)
goto done;
if(message[2] & 0x80)
/* Unicast, ignored for now. */
goto done;
changed = update_neighbour(neigh, seqno, interval);
update_neighbour_metric(neigh, changed);
if(interval > 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment