1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

emulation on host: missing mock functions, improve host interface handling (#7404)

This commit is contained in:
david gauchard
2020-06-24 19:05:57 +02:00
committed by GitHub
parent b26388812a
commit 5d60c55fb2
4 changed files with 411 additions and 388 deletions

View File

@ -145,3 +145,8 @@ void WiFiServer::close ()
::close(pcb2int(_listen_pcb));
_listen_pcb = int2pcb(-1);
}
void WiFiServer::stop ()
{
close();
}