2017-02-03 07:33:27 +00:00
|
|
|
This is a basic HTTP server with WebSockets based on httpd from LwIP.
|
|
|
|
|
|
|
|
WebSockets implementation supports binary and text modes. Multiple sockets are supported. Continuation frames are not implemented.
|
|
|
|
By default, a WebSocket is closed after 20 seconds of inactivity to conserve memory. This behavior can be changed by overriding `WS_TIMEOUT` option.
|
|
|
|
|
|
|
|
To enable debugging extra flags `-DLWIP_DEBUG=1 -DHTTPD_DEBUG=LWIP_DBG_ON` should be passed at compile-time.
|
2017-02-02 06:17:53 +00:00
|
|
|
|
2017-02-03 07:33:27 +00:00
|
|
|
This module expects your project to provide "fsdata.c" created with "makefsdata" utility.
|
2017-01-27 08:38:01 +00:00
|
|
|
See examples/http_server.
|
2017-02-03 07:33:27 +00:00
|
|
|
|
|
|
|
Maintained by lujji (https://github.com/lujji/esp-httpd).
|