Modify changes to test TCP socket.
Fork of Socket by
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)