Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: HelloWizFi250Interface
Fork of NetworkSocketAPI by
Diff: Socket.cpp
- Revision:
- 70:aa343098aa61
- Parent:
- 68:a52251517491
- Child:
- 109:5d8bd5752386
--- a/Socket.cpp Thu Mar 31 00:56:13 2016 -0500 +++ b/Socket.cpp Fri Apr 01 18:26:24 2016 +0000 @@ -98,7 +98,7 @@ int32_t recv = _socket->recv(data, size); - if (recv != 0 || !blocking) { + if (recv != NS_ERROR_WOULD_BLOCK || !blocking) { return recv; } }