ESPAsyncWebServer
ESPAsyncWebServer copied to clipboard
Async Web Server for ESP8266 and ESP32
Please change Line 320 in WebResponses.cpp from: outLen = sprintf((char*)buf+headLen, "%x", readLen) + headLen; To: outLen = sprintf((char*)buf+headLen, "%04x", readLen) + headLen; This then allows files of near unlimited size...
hi i have create a class with che async web server but not setting processor my h file is `class Webserver { public: explicit Webserver(Config *cfg, Debug *debug, uint8_t port...
The most used case is of course, to serve static files from a SPIFFS filesystem. This is great and works fine, for example with ``` server.serveStatic("/", SPIFFS, "/www/"); ``` In...
error: 'mbedtls_md5_starts_ret' was not declared in this scope; did you mean 'mbedtls_md5_starts'?
Hi, I use lastest library version on Arduino IDE 2.2.1, with ESP32 wroom32, when I compile I get many errors. First lines starting with : d:\Mega\� Arduino\libraries\ESPAsyncWebServer\src\WebAuthentication.cpp: In function 'bool...
This page: https://me-no-dev.github.io/ESPAsyncWebServer/ Has this code: ``` AsyncResponseStream *response = request->beginResponseStream("application/json"); DynamicJsonBuffer jsonBuffer; JsonObject &root = jsonBuffer.createObject(); root["heap"] = ESP.getFreeHeap(); root["ssid"] = WiFi.SSID(); root.printTo(*response); request->send(response); ``` which does not build....
Hi, I'm trying to use classes for my AP with html page which stored on SPIFFS. I've created member of class as `String Network::processor(const String &var);` And trying to use...
Hello, this has been already asked (and apparently ignored) here : #466 and #483 When having a bi-directional communication for parameter synchronisation for instance, you often don't want to send...
Sometimes when I reload the page, the source code shows up. Goingo to inpect -> source, only html and css are there. The js script is missing. I am using...
Hello, You have mentioned that the library supports for digest authentication, but you have used basic http authentication in all of examples. How should digest authentication be implemented on server?...
Stability improvements to the server, allowing to survive momentary overload e.g. when serving more the 4 files on handling a few clients. Overload control thresholds: Level1: (max connections exceeded): send...