mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-17 06:42:21 +03:00
WiFiClient,WiFiServer: update to match new err_t definition
This commit is contained in:
committed by
Ivan Grokhotkov
parent
1b932181bd
commit
5116a46f09
@@ -62,10 +62,10 @@ public:
|
||||
using Print::write;
|
||||
|
||||
protected:
|
||||
int8_t _accept(tcp_pcb* newpcb, int8_t err);
|
||||
long _accept(tcp_pcb* newpcb, long err);
|
||||
void _discard(ClientContext* client);
|
||||
|
||||
static int8_t _s_accept(void *arg, tcp_pcb* newpcb, int8_t err);
|
||||
static long _s_accept(void *arg, tcp_pcb* newpcb, long err);
|
||||
static void _s_discard(void* server, ClientContext* ctx);
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user