Commit 3bf64b13 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Alpha-conversion.

parent df8bd71b
...@@ -131,11 +131,12 @@ parse_packet(const unsigned char *from, struct network *net, ...@@ -131,11 +131,12 @@ parse_packet(const unsigned char *from, struct network *net,
} else { } else {
/* Request for a new seqno */ /* Request for a new seqno */
int hopcount = message[2]; int hopcount = message[2];
int seqno = message[1]; int theirseqno = message[1];
struct route *installed; struct route *installed;
installed = find_installed_route(dest); installed = find_installed_route(dest);
if(installed) { if(installed) {
if(seqno_compare(installed->seqno, seqno) >= 0) if(seqno_compare(installed->seqno,
theirseqno) >= 0)
send_update(dest, neigh->network); send_update(dest, neigh->network);
else if(hopcount >= 2) { else if(hopcount >= 2) {
send_unicast_request(installed->nexthop, send_unicast_request(installed->nexthop,
......
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