Commit 7a8657fc authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Force updating seqno when replying to a specific request.

parent 9e11409e
...@@ -110,7 +110,7 @@ parse_packet(const unsigned char *from, struct network *net, ...@@ -110,7 +110,7 @@ parse_packet(const unsigned char *from, struct network *net,
send_txcost(neigh, NULL); send_txcost(neigh, NULL);
send_update(NULL, neigh->network); send_update(NULL, neigh->network);
} else if(memcmp(message + 4, myid, 16) == 0) { } else if(memcmp(message + 4, myid, 16) == 0) {
send_self_update(neigh->network, 0); send_self_update(neigh->network, 1);
} else { } else {
struct destination *dest; struct destination *dest;
dest = find_destination(message + 4, 0, 0); dest = find_destination(message + 4, 0, 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