Fix for CLOSE_WAIT Bug

Fir for an EthernetClient bug, as per the following thread http://forum.freetronics.com/viewtopic.php?t=176

Kudos to mr-russ for finding a fix.
This commit is contained in:
Johann Richard 2012-04-05 22:13:49 +02:00
parent ad1d5ca89d
commit 47c46c4f25
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ int EthernetClient::connect(IPAddress ip, uint16_t port) {
for (int i = 0; i < MAX_SOCK_NUM; i++) {
uint8_t s = W5100.readSnSR(i);
if (s == SnSR::CLOSED || s == SnSR::FIN_WAIT) {
if (s == SnSR::CLOSED || s == SnSR::FIN_WAIT || s == SnSR::CLOSE_WAIT) {
_sock = i;
break;
}