mbed socket API
Dependents: EthernetInterface EthernetInterface_RSF EthernetInterface EthernetInterface ... more
Deprecated
This is an mbed 2 sockets library. For mbed 5, network sockets have been revised to better support additional network stacks and thread safety here.
Diff: TCPSocketServer.cpp
- Revision:
- 15:41e3af01f58e
- Parent:
- 11:3d83c348fb8b
- Child:
- 16:2d471deff212
--- a/TCPSocketServer.cpp Sat Aug 04 08:28:29 2012 +0000
+++ b/TCPSocketServer.cpp Mon Aug 13 09:38:00 2012 +0000
@@ -66,6 +66,7 @@
if (wait_readable(timeout) != 0)
return -1;
}
+ connection.reset_address();
socklen_t newSockRemoteHostLen = sizeof(connection._remoteHost);
int fd = lwip_accept(_sock_fd, (struct sockaddr*) &connection._remoteHost, &newSockRemoteHostLen);
if (fd < 0)
mbed official


