libesphttpd icon indicating copy to clipboard operation
libesphttpd copied to clipboard

Libesphttpd - web server for ESP8266 / ESP32

Results 14 libesphttpd issues
Sort by recently updated
recently updated
newest added

We can add this library to the new IDF Component Registry https://components.espressif.com/ Some info about what is required: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/tools/idf-component-manager.html

I'm finally upgrading my project to ESP-IDF 5.x and it looks like this library will need some changes to support it. The first issue I encounter is > Failed to...

The WiFi code in this httpd repo is outside the scope of an http server. It requires maintenance as the ESP-IDF SDK changes and it is application dependent. Anyone object...

Seems I got unlucky and stumbled on this bug. I guess my minimized and gzip compressed javascript is an exact multiple of the chunk size defined in serveStaticFile() = 1024....

Hi, and thank you for this fork, along with some of @jkent's cmake stuff I'm up and running! I'm wondering about concurrency and access to the sendBuf. I noticed some...

Hi, it looks like library will not work on nonos-sdk because methods in httpd-nonos.c is not compatibe with their prototypes. For example, in httpd.c there is a method `CallbackStatus ICACHE_FLASH_ATTR...

Hi, If I reload a page that has an active web socket connection then there is a crash at: https://github.com/chmorgan/libesphttpd/blob/master/util/cgiwebsocket.c#L149 Presumably the previous page's web socket is no longer valid...

I have libesphttpd working find on ESP32 + esp-idf 3.3. Today I tried to enable SSL support. I got logs and everything seems to work fine but SSL_accept takes about...

Hi, I am currently playing around with WebSockets in the newest build of the libesphttpd server. I seems to run fine except from sending continuous frames frames. I have tried...

When it receives a websockets frame that spans multiple TCP segments, the receive callback gets called once with each segment, with no obvious way to reassemble them. https://github.com/chmorgan/libesphttpd/blob/master/util/cgiwebsocket.c#L174 https://github.com/chmorgan/libesphttpd/blob/master/util/cgiwebsocket.c#L254 ^...