This is a lightweight port of the libwebsockets library designed to run on the ESP32. It provides WebSocket client functionalities.
The ESP-IDF port of libwebsockets supports a set of common WebSocket configurations for clients. These options can be configured through a structure passed to the lws_create_context()
function.
Key features supported:
- WebSocket with optional SSL/TLS
- HTTP/1.1 client support
The memory consumption primarily depends on the number of concurrent connections and the selected options for WebSocket frames, protocol handling, and SSL/TLS features. It consumes approximately 300 kB of program memory.
The values bellow were extracted from the client example (./examples/client/main/lws-client.c)
- Initial Memory Usage: ~8 kB of heap on startup
- Connected Memory Usage Over TLS: ~35.3 kB of heap after connected to a server
- Connected Memory Usage Over TCP (Plain): ~4.5 kB of heap after connected to a server