Commit 68bdfc4d authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Ignore requests when we're a parasite.

parent 4172b3d7
......@@ -120,7 +120,7 @@ parse_packet(const unsigned char *from, struct network *net,
else
new_seqno = 1;
send_self_update(neigh->network, new_seqno);
} else {
} else if(!parasitic) {
struct destination *dest;
dest = find_destination(message + 4, 0, 0);
if(dest) {
......
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