1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-10 04:22:05 +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

@ -151,7 +151,7 @@ T* slist_append_tail(T* head, T* item) {
return head;
}
int8_t WiFiServer::_accept(tcp_pcb* apcb, int8_t err) {
long WiFiServer::_accept(tcp_pcb* apcb, long err) {
(void) err;
DEBUGV("WS:ac\r\n");
ClientContext* client = new ClientContext(apcb, &WiFiServer::_s_discard, this);
@ -166,7 +166,7 @@ void WiFiServer::_discard(ClientContext* client) {
DEBUGV("WS:dis\r\n");
}
int8_t WiFiServer::_s_accept(void *arg, tcp_pcb* newpcb, int8_t err) {
long WiFiServer::_s_accept(void *arg, tcp_pcb* newpcb, long err) {
return reinterpret_cast<WiFiServer*>(arg)->_accept(newpcb, err);
}