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: VC0706_FTP_Client_Ethernet_MQTT
Fork of WIZnetInterface by
Revision 22:01ea4b74d8eb, committed 2018-07-16
- Comitter:
- Albinarackal
- Date:
- Mon Jul 16 09:21:17 2018 +0000
- Parent:
- 21:584efa51ee60
- Commit message:
- For MQTT and FTP connection
Changed in this revision
| Socket/TCPSocketConnection.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/Socket/TCPSocketConnection.cpp Thu Dec 14 04:49:15 2017 +0000
+++ b/Socket/TCPSocketConnection.cpp Mon Jul 16 09:21:17 2018 +0000
@@ -106,8 +106,10 @@
int TCPSocketConnection::receive(char* data, int length)
{
if((_sock_fd<0) || !(eth->is_connected(_sock_fd)))
+ {
+
return -1;
-
+}
int size = eth->wait_readable(_sock_fd, _blocking ? -1 : _timeout);
//int size = eth->wait_readable(_sock_fd, _blocking ? _timeout : -1 );
if (size < 0) {
