1
0
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:
Ivan Grokhotkov
2017-10-14 23:11:56 +08:00
committed by Ivan Grokhotkov
parent 1b932181bd
commit 5116a46f09
3 changed files with 13 additions and 19 deletions

View File

@@ -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);
};