libwebsockets/lib/core-net
stropee ea00ad2076 http: pipeline: enable for more methods
Signed-off-by: stropee <simon@sirocha.fr>
2024-11-03 07:58:59 +00:00
..
client http: pipeline: enable for more methods 2024-11-03 07:58:59 +00:00
adopt.c mbedtls: improve api detection 2022-02-01 11:09:48 +00:00
close.c pipe: only pt destroy pipe close should close pipe fds 2024-09-25 08:42:44 +01:00
CMakeLists.txt net: lws_wol() and lws_parse_mac() 2023-11-24 05:44:42 +00:00
dummy-callback.c cgi: gracefully handle missing wsi->http.cgi 2022-03-15 10:28:09 +00:00
lws-dsh.c dsh: msvc refuses void pointer arithmetic 2021-12-23 06:22:54 +00:00
network.c netdev: BIND_TO_DEVICE 2024-09-25 10:43:29 +01:00
output.c logs: more internal conversion to log_cx 2021-07-01 05:20:53 +01:00
pollfd.c Restore erroneous modified assertion 2024-05-12 05:55:18 +01:00
private-lib-core-net.h pipe: only pt destroy pipe close should close pipe fds 2024-09-25 08:42:44 +01:00
README.md minimal-http-client-multi: add POST 2020-02-21 17:32:41 +00:00
route.c netlink: route handling checks for SRC when it means DST 2022-04-10 06:56:12 +01:00
service.c windows: fix mishandling slow connects 2024-08-20 13:58:56 +01:00
socks5-client.c socks5: cast for mingw3 nonposix recv args 2021-07-08 15:24:15 +01:00
sorted-usec-list.c sul: add clear advice for zombie suls 2022-03-25 08:18:30 +00:00
state.c logs: log contexts 2021-07-01 05:20:53 +01:00
transport-mux-client.c sspc: refactor to allow different transports 2021-10-08 09:48:41 +01:00
transport-mux-common.c minimal: ss: embedded: RT595S ACM transport 2021-10-24 16:50:39 +01:00
transport-mux-proxy.c sspc: refactor to allow different transports 2021-10-08 09:48:41 +01:00
vhost.c udp: stop crash on failed udp connects at cx destroy 2024-09-23 07:00:25 +01:00
wol.c wol: fix socket return for windows 2024-03-01 08:11:11 +00:00
wsi-timeout.c validity: fix bad pointer access 2022-05-04 08:43:26 +01:00
wsi.c lws_get_urlarg_by_name: drop candidates that wont fit in buf rather than bail 2024-09-28 06:03:06 +01:00

Implementation background

Client connection Queueing

By default lws treats each client connection as completely separate, and each is made from scratch with its own network connection independently.

If the user code sets the LCCSCF_PIPELINE bit on info.ssl_connection when creating the client connection though, lws attempts to optimize multiple client connections to the same place by sharing any existing connection and its tls tunnel where possible.

There are two basic approaches, for h1 additional connections of the same type and endpoint basically queue on a leader and happen sequentially.

For muxed protocols like h2, they may also queue if the initial connection is not up yet, but subsequently the will all join the existing connection simultaneously "broadside".

h1 queueing

The initial wsi to start the network connection becomes the "leader" that subsequent connection attempts will queue against. Each vhost has a dll2_owner wsi->dll_cli_active_conns_owner that "leaders" who are actually making network connections themselves can register on as "active client connections".

Other client wsi being created who find there is already a leader on the active client connection list for the vhost, can join their dll2 wsi->dll2_cli_txn_queue to the leader's wsi->dll2_cli_txn_queue_owner to "queue" on the leader.

The user code does not know which wsi was first or is queued, it just waits for stuff to happen the same either way.

When the "leader" wsi connects, it performs its client transaction as normal, and at the end arrives at lws_http_transaction_completed_client(). Here, it calls through to the lws_mux _lws_generic_transaction_completed_active_conn() helper. This helper sees if anything else is queued, and if so, migrates assets like the SSL *, the socket fd, and any remaining queue from the original leader to the head of the list, which replaces the old leader as the "active client connection" any subsequent connects would queue on.

It has to be done this way so that user code which may know each client wsi by its wsi, or have marked it with an opaque_user_data pointer, is getting its specific request handled by the wsi it expects it to be handled by.

A side effect of this, and in order to be able to handle POSTs cleanly, lws does not attempt to send the headers for the next queued child before the previous child has finished.

The process of moving the SSL context and fd etc between the queued wsi continues until the queue is all handled.

muxed protocol queueing and stream binding

h2 connections act the same as h1 before the initial connection has been made, but once it is made all the queued connections join the network connection as child mux streams immediately, "broadside", binding the stream to the existing network connection.