No description
Find a file
2025-09-09 15:27:49 +01:00
.github codeql: update to v3 2025-09-09 15:26:30 +01:00
cmake LWS_WITH_WAKE_LOGGING 2025-09-09 15:26:30 +01:00
contrib cmake: set minimum to 3.10 2025-06-19 14:48:23 +01:00
doc-assets lhp: Lightweight HTML Parser 2022-05-04 08:43:26 +01:00
include mbedtls: LWS_SERVER_OPTION_MBEDTLS_VERIFY_CLIENT_CERT_POST_HANDSHAKE 2025-09-09 15:27:49 +01:00
lib with-server: always build raw-skt adoption_bind 2025-09-09 15:27:49 +01:00
lwsws lws_metrics 2021-03-08 21:47:28 +00:00
minimal-examples esp-idf-5.5-lsp-heltec 2025-08-22 12:19:56 +01:00
minimal-examples-lowlevel ctest: allow larger range of SAI_INSTANCE_IDX 2025-09-09 15:26:30 +01:00
plugin-standalone cmake: set minimum to 3.10 2025-06-19 14:48:23 +01:00
plugins deaddrop: title 2025-09-09 15:26:30 +01:00
READMEs ctest: allow larger range of SAI_INSTANCE_IDX 2025-09-09 15:26:30 +01:00
scripts ctest: make daemon spawn adaptively wait for listen 2025-06-01 05:32:53 +01:00
test-apps LWS_SERVER_OPTION_OPENSSL_AUTO_DH_PARAMETERS takes care of providing a 2025-08-24 12:57:11 +01:00
win32port win32port: zlib: upstream bugfix patch on inftrees.c 2025-02-24 12:41:19 +00:00
.gitignore systemd: add socket activation example 2024-01-04 11:41:27 +00:00
.mailmap mailmap 2018-08-14 08:00:30 +08:00
.sai.json windows: spawn: fix res handling for cb 2025-09-09 15:27:46 +01:00
bug_report.md docs: switch to use main 2020-10-19 16:35:03 +01:00
changelog release v4.4.0 2025-07-10 09:52:49 +01:00
CMakeLists-implied-options.txt without-server: adapt loops to not touch listen_list 2024-09-25 07:02:12 +01:00
CMakeLists.txt LWS_WITH_WAKE_LOGGING 2025-09-09 15:26:30 +01:00
component.mk Fixes to track updates in esp-idf 2018-06-20 16:41:28 +08:00
Kconfig esp32: enforce ssl nonblocking 2017-04-03 14:09:37 +08:00
lgtm.yml lgtm.yml 2022-03-15 10:28:09 +00:00
libwebsockets.dox doc: update doxygen 2022-04-23 07:39:35 +01:00
LICENSE lws_display: add display list / DLO support 2022-03-25 08:18:29 +00:00
Makefile.projbuild esp32-selfsigned 2017-12-01 11:37:35 +08:00
README.md release v4.4.0 2025-07-10 09:52:49 +01:00
SECURITY.md Create SECURITY.md 2024-03-05 06:47:53 +00:00

CI status Coverity Scan Build Status CII Best Practices

Libwebsockets

** v4.4 is released, you can follow it on v4.4-stable **

Libwebsockets is a simple-to-use, MIT-license, pure C library providing client and server for http/1, http/2, websockets, MQTT and other protocols in a security-minded, lightweight, configurable, scalable and flexible way. It's easy to build and cross-build via cmake and is suitable for tasks from embedded RTOS through mass cloud serving.

It supports a lot of lightweight ancilliary implementations for things like JSON, CBOR, JOSE, COSE, and supports OpenSSL and MbedTLS v2 and v3 out of the box for everything. It's very gregarious when it comes to event loop sharing, supporting libuv, libevent, libev, sdevent, glib and uloop, as well as custom event libs.

100+ independent minimal examples for various scenarios, CC0-licensed (public domain) for cut-and-paste, allow you to get started quickly.

There are a lot of READMEs on a variety of topics.

We do a huge amount of CI testing per push, currently 582 builds on 30 platforms. You can see the lws CI rack and read about how lws-based Sai is used to coordinate all the testing.

overview

News

HTML + CSS + JPEG + PNG display stack in lws

Want to drive your EPD or TFT / OLED display using HTML + CSS? Only got an ESP32?

Want remote JPEGs, PNGs, HTML, RGBA composition, gamma, error diffusion if needed?

Realtime render into a line buffer because you don't have enough heap for a framebuffer?

Take a look here...

Perl binding for lws available

Thanks to Felipe Gasper, there's now a perl binding for lws available at metacpan, this uses the recent generic event loop support in lws to have lws as a guest on an existing perl event loop.

Lws examples switching to Secure Streams

Secure Streams direct

Secure Streams support in lws was introduced a couple of years ago, it's a higher-level interface to lws wsi-level apis that simplifies connectivity by segregating connection policy like protocol and endpoint information into a separate JSON policy file, and just having the code deal with payloads; as many details of the wire protocol as possible are hidden or moved to the policy, so user code is almost identical even if the wire protocol changes.

The user code just asks to create a SS by "streamtype name", it is created according to the details (protocol, endpoint, etc) under the same name in the policy.

Key policy entries like endpoint can contain ${metadata-name} string substitutions to handle runtime adaptations via metadata. h1, h2, ws and mqtt are supported.

As a layer on top of the wsi apis, SS provides a higher-level way to access the existing wsi-level capabilities, both kinds of API will remain supported. Secure Streams are longer-lived than a single wsi, so an SS can coordinate retries by itself. SS-based user code is typically significantly smaller and more maintainable than wsi layer.

In main branch I have moved the older examples into ./minimal-examples-lowlevel and am starting to port more cases from there into SS-based examples.

Comparison between wsi and SS level lws usage

Feature "low-level" wsi way Secure Streams way
Create context code same
Loop support, sul scheduler default, event libs same
Supports comms mode Client, Server, Raw same
Supports protocols h1, h2, ws, mqtt (client) same
TLS support mbedtls (including v3), openssl (including v3), wolfssl, boringssl, aws-lc, libressl same
Serializable, proxiable, muxable, transportable No Yes
Auto-allocated per-connection user object pss specified in lws_protocols Specified in ss info struct
Connection User API Protocol-specific lws_protocols cbs (> 100) SS API (rx, tx, state callbacks only)
Sending adaptation lws_callback_on_writeable() + WRITEABLE lws_ss_request_write() + tx() cb
Sending buffer User-chosen + malloc'd partial handling SS-provided, no partials
Create vhosts code JSON policy
TLS validation cert bundle or code JSON policy, or cert bundle
Connection retry / backoff code JSON policy, Auto
Nailing up code JSON policy, Auto
Endpoint and protocol details spread around the code JSON policy
Protocol selection, pipeline / stream sharing code JSON policy
ws subprotocol selection code JSON policy
ws binary / text code JSON policy
Protocol-specific metadata Protocol-specific apis in code (eg, lws_hdr) JSON policy, generic metadata apis in code
Connection validity rules struct JSON policy, Auto
Stream as Long Poll code JSON policy
Auth code JSON policy + automatic rotation if provider supported, else code

Serialized Secure Streams

Secure Streams direct

Secure Streams APIs are also serializable, the exact same client code can fulfil the connection directly in the same process as you would expect, or forward the actions, metadata and payloads to an SS Proxy that owns the policy over a Unix Domain or TCP socket connection to be fulfilled centrally. This allows, eg, h2 streams from different processes sharing a single connection.

Secure Streams direct

The serialized SS can also travel over generic transports like UART, an example is provided implementing the Binance example on an RPi Pico with a UART transport to a UART transport SS proxy, where the pico itself has no network stack, tls, compression or wss stack, but can send and receive to and from the endpoint as if it did.

The optional lws_trasport_mux is used to interpose between the UART transport and the SSPC layer, allowing a single pipe to carry many separate SS connections.

The user SS code is identical however it is transported, muxed and fulfilled.

v4.3 is released

See the changelog

Support

This is the libwebsockets C library for lightweight websocket clients and servers. For support, visit

https://libwebsockets.org

You can get the latest version of the library from git:

Doxygen API docs for development: https://libwebsockets.org/lws-api-doc-main/html/index.html