mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-12 03:37:23 +00:00
Kieran Mansley - kjm25@cam.ac.uk - 20th September 2004
* Corrected "out by one" error on one of the TCP_SEQ_BETWEEN macro calls introduced recently
This commit is contained in:
parent
2ed5bc5195
commit
4cb8192c1d
@ -1122,7 +1122,7 @@ tcp_receive(struct tcp_pcb *pcb)
|
|||||||
} else
|
} else
|
||||||
/*if (TCP_SEQ_LT(prev->tcphdr->seqno, seqno) &&
|
/*if (TCP_SEQ_LT(prev->tcphdr->seqno, seqno) &&
|
||||||
TCP_SEQ_LT(seqno, next->tcphdr->seqno)) {*/
|
TCP_SEQ_LT(seqno, next->tcphdr->seqno)) {*/
|
||||||
if(TCP_SEQ_BETWEEN(seqno, prev->tcphdr->seqno, next->tcphdr->seqno-1)){
|
if(TCP_SEQ_BETWEEN(seqno, prev->tcphdr->seqno+1, next->tcphdr->seqno-1)){
|
||||||
/* The sequence number of the incoming segment is in
|
/* The sequence number of the incoming segment is in
|
||||||
between the sequence numbers of the previous and
|
between the sequence numbers of the previous and
|
||||||
the next segment on ->ooseq. We trim and insert the
|
the next segment on ->ooseq. We trim and insert the
|
||||||
|
Loading…
Reference in New Issue
Block a user