ESPAsyncTCP
ESPAsyncTCP copied to clipboard
Async TCP Library for ESP8266
My esp8266 froze when I closed a tcp connection from the remote side (on the windows server). The client was propably closed inside the _client->write() call by the _onDisconnect callback....
Fix to make ESPAsyncTCP work with the latest platform.io update
I added some comments. Please make sure they're correct if you decide to merge...
Hi, I'm using ESPAsyncWebServer for quite some time. I was trying to update my libraries to the latest versions, but there were no published releases available. Would be nice it...
Fixes a warning when compiling with `-Wpedantic`: ``` .pio/libdeps/nodemcu/ESPAsyncTCP/src/ESPAsyncTCP.h:34:2: warning: extra ';' [-Wpedantic] 34 | }; | ^ ```
Ogo
Only minor differences between the ESP8266 and RP2040 cores, bracketed with `#ifdef`s. One new[]/delete[] error detected by GCC and fixed here.
Hello, not an expert on the LWIP and Arduino stack but these changes was need to make it compile on my IPv6 enabled ESP8622 core. Not sure if we need...
Using this with IPV6 i get these kind of compile errors pio/libdeps/d1_mini/ESPAsyncTCP/src/ESPAsyncTCP.cpp: In member function 'bool AsyncClient::connect(IPAddress, uint16_t)': .pio/libdeps/d1_mini/ESPAsyncTCP/src/ESPAsyncTCP.cpp:248:8: error: 'ip_addr_t' {aka 'struct ip_addr'} has no member named 'addr'; did...
Hello, When enabling `ssl_fingerprints` option in esphome, we get a similar error to this: ``` Compiling .pioenvs/xxxx/lib975/ESPAsyncTCP-esphome/ESPAsyncTCP.cpp.o In file included from /piolibs/ESPAsyncTCP-esphome/src/ESPAsyncTCP.cpp:84:0: /piolibs/ESPAsyncTCP-esphome/src/tcp_axtls.h:44:25: fatal error: include/ssl.h: No such file or...