diff options
author | Florin Coras <fcoras@cisco.com> | 2023-12-11 16:04:57 -0800 |
---|---|---|
committer | Dave Barach <vpp@barachs.net> | 2024-01-09 17:07:54 +0000 |
commit | 7428eaa4a1ae55052825cdc6c0a9ae6c4f8748ac (patch) | |
tree | 03cd6175294c6b13737e83ccce112b1ca0d6d6e9 /extras/hs-test | |
parent | 5afc13d594bf874092e135a8dc94d30c4537526b (diff) |
session: support for cl port reuse
Adds support for connectionless listener port reuse. Until now, cl
listeners had fifos allocated to them and therefore only one app worker
could ever listen, i.e., a session cannot have multiple fifos.
To circumvent the limitation, this separates the fifos from the listener
by allocating new cl sessions for each app worker that reuses the app
listener. Flows are hashed to app worker cl sessions but, for now, this
is not a consistent/fixed hash.
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Ic6533cd47f2765903669f88c288bd592fb17a19e
Diffstat (limited to 'extras/hs-test')
-rw-r--r-- | extras/hs-test/resources/nginx/nginx_http3.conf | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/extras/hs-test/resources/nginx/nginx_http3.conf b/extras/hs-test/resources/nginx/nginx_http3.conf index c7bd78a224b..2a01f714111 100644 --- a/extras/hs-test/resources/nginx/nginx_http3.conf +++ b/extras/hs-test/resources/nginx/nginx_http3.conf @@ -1,4 +1,5 @@ -master_process off; +master_process on; +worker_processes 2; daemon off; events { @@ -16,7 +17,7 @@ http { sendfile on; server { listen 0.0.0.0:8443 quic; - listen 0.0.0.0:8443 ssl; + #listen 0.0.0.0:8443 ssl; root /usr/share/nginx; ssl_certificate /etc/nginx/ssl/localhost.crt; ssl_certificate_key /etc/nginx/ssl/localhost.key; |