diff options
author | 2024-10-09 20:30:41 +0200 | |
---|---|---|
committer | 2024-10-14 16:55:09 +0000 | |
commit | b6ac2d7a7a4407f8a3e7e9d68f850d2f76d2dc1a (patch) | |
tree | e7aad67f00eef55c4640b2a0c00a8acf3e13c678 /src/plugins/http/http.h | |
parent | 4d9abd6cddf7af8bfc56837f305b13abac48de03 (diff) |
http: track half-open sessions
It might happen that app detach during connecting period and worker
is not valid anymore when http_ts_connected_callback is called.
Type: improvement
Change-Id: I95f094e8bc0352728a61e3fe74ab0745859e2457
Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'src/plugins/http/http.h')
-rw-r--r-- | src/plugins/http/http.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/http/http.h b/src/plugins/http/http.h index 5f74edb5e47..25c480508b7 100644 --- a/src/plugins/http/http.h +++ b/src/plugins/http/http.h @@ -424,6 +424,7 @@ typedef struct http_main_ { http_worker_t *wrk; http_conn_t *listener_pool; + http_conn_t *ho_conn_pool; u32 app_index; clib_timebase_t timebase; |