mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-30 12:32:37 +00:00
Fixed bug #28062: Data received directly after accepting does not wake up select
This commit is contained in:
parent
6f38b63a47
commit
94a7fee8c8
@ -46,6 +46,10 @@ HISTORY
|
|||||||
|
|
||||||
++ Bugfixes:
|
++ Bugfixes:
|
||||||
|
|
||||||
|
2009-11-20: Simon Goldschmidt (patch by Albert Bartel)
|
||||||
|
* sockets.c: Fixed bug #28062: Data received directly after accepting
|
||||||
|
does not wake up select
|
||||||
|
|
||||||
2009-11-11: Simon Goldschmidt
|
2009-11-11: Simon Goldschmidt
|
||||||
* netdb.h: Fixed bug #27994: incorrect define for freeaddrinfo(addrinfo)
|
* netdb.h: Fixed bug #27994: incorrect define for freeaddrinfo(addrinfo)
|
||||||
|
|
||||||
|
@ -1059,6 +1059,7 @@ event_callback(struct netconn *conn, enum netconn_evt evt, u16_t len)
|
|||||||
sys_sem_signal(socksem);
|
sys_sem_signal(socksem);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
s = conn->socket;
|
||||||
sys_sem_signal(socksem);
|
sys_sem_signal(socksem);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user