We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e6c837 commit ea4ae60Copy full SHA for ea4ae60
libraries/WiFi/src/WiFiClient.h
@@ -16,7 +16,7 @@ class WiFiClient: public lwipClient {
16
int connect(IPAddress ip, uint16_t port) {
17
auto res = lwipClient::connect(ip, port);
18
19
- this->bindCNetIf(WiFi);
+ this->bindCNetIf(WiFiStation);
20
21
return res;
22
}
libraries/WiFi/src/WiFiServer.h
@@ -5,9 +5,10 @@
5
6
class WiFiServer: public lwipServer {
7
public:
8
+ WiFiServer(uint16_t port) : lwipServer(port) {}
9
void begin() {
10
lwipServer::begin();
11
12
13
14
WiFiClient available() {
0 commit comments