ESPAsyncWebServer
ESPAsyncWebServer copied to clipboard
Async Web Server for ESP8266 and ESP32
In the implementation of ESPAsyncWebServer, spaces may be added to the end of HTTP chunk sizes, but before CRLF. This can usually be parsed by browsers but can cause bugs...
Last update year ago. Huge list of useful pull requests...
I have a lot of data I need to send out via an `AsyncWebSocket` in multiple messages in a loop. So I thought I could wait for `AsyncWebSocket::availableForWriteAll()` to return...
I'm using chunked responses to fulfill some larger files. Rarely, it works, but usually it bails out at some random point. There's no indication of why, and in Chrome it...
/home/hari/Arduino/libraries/ESPAsyncWebServer/src/AsyncWebSocket.cpp: In member function 'IPAddress AsyncWebSocketClient::remoteIP()': /home/hari/Arduino/libraries/ESPAsyncWebServer/src/AsyncWebSocket.cpp:832:28: error: call of overloaded 'IPAddress(unsigned int)' is ambiguous return IPAddress(0U); ^ In file included from /home/hari/.arduino15/packages/esp32/hardware/esp32/2.0.1/cores/esp32/Arduino.h:163, from /home/hari/Arduino/libraries/ESPAsyncWebServer/src/AsyncWebSocket.cpp:21: /home/hari/.arduino15/packages/esp32/hardware/esp32/2.0.1/cores/esp32/IPAddress.h:51:5: note: candidate: 'IPAddress::IPAddress(const uint8_t*)'...
I originally discovered this issue about a year ago. An ESP will instantly crash as a result of using Websockets and this library. Opening, closing and reopening a websocket will...
# Versions Board: ESP32 Arduino IDE: `1.8.19` Arduino ESP32 core version: `2.0.4` ESPAsyncWebServer: `1.2.3` # Issue When I start the server for the first time it takes a good size...
```cpp server.on("/test", HTTP_GET, [](AsyncWebServerRequest *request) { // 1s OK, 3s crash -> when no wdtFeed auto seconds = 20; auto end = millis() + seconds * 1000; // this loop,...
I'm trying to find a way to automatically ping all connected clients by using the native ping/pong feature (as workaround i could send custom messages from the client to the...
hi... i am learning how to use this lib ... it seems very useful and efficient i am trying to write a custom captive portal ... since all local dns...