mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-18 20:10:53 +00:00
Fixed bug #36210 lwIP does not elicit an empty ACK when received unacceptable ACK
This commit is contained in:
parent
4c3b6814dc
commit
035ecef8a5
@ -100,6 +100,10 @@ HISTORY
|
|||||||
|
|
||||||
++ Bugfixes:
|
++ Bugfixes:
|
||||||
|
|
||||||
|
2014-04-06: Simon Goldschmidt
|
||||||
|
* tcp_in.c: Fixed bug #36210 lwIP does not elicit an empty ACK when received
|
||||||
|
unacceptable ACK
|
||||||
|
|
||||||
2014-04-06: Simon Goldschmidt
|
2014-04-06: Simon Goldschmidt
|
||||||
* dhcp.c, ip4.c/.h, ip6.c/.h, udp.c/.h, ip.h: Fixed bug #41787 DHCP Discovery
|
* dhcp.c, ip4.c/.h, ip6.c/.h, udp.c/.h, ip.h: Fixed bug #41787 DHCP Discovery
|
||||||
is invalid when an IP is set to thet netif.
|
is invalid when an IP is set to thet netif.
|
||||||
|
@ -1112,8 +1112,9 @@ tcp_receive(struct tcp_pcb *pcb)
|
|||||||
}
|
}
|
||||||
#endif /* LWIP_IPV6 && LWIP_ND6_TCP_REACHABILITY_HINTS*/
|
#endif /* LWIP_IPV6 && LWIP_ND6_TCP_REACHABILITY_HINTS*/
|
||||||
} else {
|
} else {
|
||||||
/* Fix bug bug #21582: out of sequence ACK, didn't really ack anything */
|
/* Out of sequence ACK, didn't really ack anything */
|
||||||
pcb->acked = 0;
|
pcb->acked = 0;
|
||||||
|
tcp_send_empty_ack(pcb);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* We go through the ->unsent list to see if any of the segments
|
/* We go through the ->unsent list to see if any of the segments
|
||||||
|
Loading…
Reference in New Issue
Block a user