projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
14eab17
)
Fixed another bug in late packet handling.
author
Guus Sliepen
<guus@tinc-vpn.org>
Mon, 8 Nov 2004 22:30:13 +0000
(22:30 +0000)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Mon, 8 Nov 2004 22:30:13 +0000
(22:30 +0000)
src/net_packet.c
patch
|
blob
|
history
diff --git
a/src/net_packet.c
b/src/net_packet.c
index
2a3e5f2
..
ac0a3db
100644
(file)
--- a/
src/net_packet.c
+++ b/
src/net_packet.c
@@
-242,8
+242,10
@@
static void receive_udppacket(node_t *n, vpn_packet_t *inpkt)
}
}
- n->received_seqno = inpkt->seqno;
- n->late[(n->received_seqno / 8) % sizeof(n->late)] &= ~(1 << n->received_seqno % 8);
+ n->late[(inpkt->seqno / 8) % sizeof(n->late)] &= ~(1 << inpkt->seqno % 8);
+
+ if(n->received_seqno > inpkt->seqno)
+ n->received_seqno = inpkt->seqno;
if(n->received_seqno > MAX_SEQNO)
keyexpires = 0;