Fixed select not reporting received FIN as 'readable' in certain rare cases (bug #43779: select(), close(), and TCP retransmission error)

This commit is contained in:
sg
2015-02-18 20:38:42 +01:00
parent 9048a7f021
commit 998ed99288
2 changed files with 8 additions and 4 deletions

View File

@@ -730,6 +730,10 @@ lwip_recvfrom(int s, void *mem, size_t len, int flags,
if (off > 0) {
/* update receive window */
netconn_recved(sock->conn, (u32_t)off);
if (err == ERR_CLSD) {
/* closed but already received data, ensure select gets the FIN, too */
event_callback(sock->conn, NETCONN_EVT_RCVPLUS, 0);
}
/* already received data, return that */
sock_set_errno(sock, 0);
return off;