Added a note about socket recv/accept timeout errno value

This commit is contained in:
goldsimon 2010-02-22 19:12:21 +00:00
parent e934f8aac6
commit 52b87b751f

View File

@ -26,6 +26,9 @@ with newer versions.
* Netconn API: Changed netconn_receive() and netconn_accept() to return
err_t, not a pointer to new data/netconn.
* Socket API / LWIP_SO_RCVTIMEO: when accept() or recv() time out, they
now set errno to EWOULDBLOCK/EAGAIN, not ETIMEDOUT.
++ Port changes