diff options
author | 2024-12-10 16:15:06 +0100 | |
---|---|---|
committer | 2025-01-09 10:59:16 +0000 | |
commit | c19cca931af3baf847d66bce9e5dd660861fc92e (patch) | |
tree | a36f0ba9f31c379984a3de4dfb54baa8808f5bbe /src/plugins/http_static/static_server.c | |
parent | e89c97a3ee1538f3693fcd298831952d5df19ec2 (diff) |
hsa: proxying UDP in HTTP/1.1
Type: feature
Change-Id: Ic0ff9b9bfbad9fbc602fbcec0d8906cd21d63a2c
Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'src/plugins/http_static/static_server.c')
-rw-r--r-- | src/plugins/http_static/static_server.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/http_static/static_server.c b/src/plugins/http_static/static_server.c index 9cc3f5dd658..ae42fd53762 100644 --- a/src/plugins/http_static/static_server.c +++ b/src/plugins/http_static/static_server.c @@ -809,6 +809,7 @@ hss_listen (void) u8 need_crypto; transport_endpt_ext_cfg_t *ext_cfg; int rv; + transport_endpt_cfg_http_t http_cfg = { hsm->keepalive_timeout, 0 }; clib_memset (a, 0, sizeof (*a)); a->app_index = hsm->app_index; @@ -825,8 +826,8 @@ hss_listen (void) clib_memcpy (&a->sep_ext, &sep, sizeof (sep)); ext_cfg = session_endpoint_add_ext_cfg ( - &a->sep_ext, TRANSPORT_ENDPT_EXT_CFG_HTTP, sizeof (ext_cfg->opaque)); - ext_cfg->opaque = hsm->keepalive_timeout; + &a->sep_ext, TRANSPORT_ENDPT_EXT_CFG_HTTP, sizeof (http_cfg)); + clib_memcpy (ext_cfg->data, &http_cfg, sizeof (http_cfg)); if (need_crypto) { |