diff options
author | Florin Coras <fcoras@cisco.com> | 2024-10-07 12:32:22 -0700 |
---|---|---|
committer | Dave Barach <vpp@barachs.net> | 2024-10-07 23:24:59 +0000 |
commit | 4856f33fa81b5a0cc3de6f0bc26b27235bc8270c (patch) | |
tree | 304c269dad650c6a75878a4fd23684bcbbb0a98d /src/plugins/http | |
parent | 8d09a70ee87e777dabf2251e517f5cd63ebc269b (diff) |
http_static: fix first and add segment size
Allow segments bigger than 4GB
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I510f7cff75883fdbd6c0c22efff9a14e26c755f4
Diffstat (limited to 'src/plugins/http')
-rw-r--r-- | src/plugins/http/http.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/http/http.c b/src/plugins/http/http.c index f1f59b41519..bbc7aed8348 100644 --- a/src/plugins/http/http.c +++ b/src/plugins/http/http.c @@ -232,6 +232,7 @@ http_ts_accept_callback (session_t *ts) if ((rv = app_worker_init_accepted (as))) { HTTP_DBG (1, "failed to allocate fifos"); + hc->h_pa_session_handle = SESSION_INVALID_HANDLE; session_free (as); return rv; } |