diff options
author | 2025-03-28 12:04:50 -0400 | |
---|---|---|
committer | 2025-03-28 20:28:15 +0000 | |
commit | 2926d0a88ef1aca5f758fb4ab68aaab45947479b (patch) | |
tree | d04e465bc8c4696fad746fec65b8215eff40d8a1 /src/plugins/http/http.c | |
parent | cf8deb94a22aa0df5d84f14f42fa35d3c9611ec1 (diff) |
http_static: POST to static files improvement
Type: improvement
Change-Id: I6a6794dee3c9e948227e6c08769d45aa595bfe02
Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'src/plugins/http/http.c')
-rw-r--r-- | src/plugins/http/http.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/http/http.c b/src/plugins/http/http.c index 5998a9ebd18..43b0993e462 100644 --- a/src/plugins/http/http.c +++ b/src/plugins/http/http.c @@ -525,7 +525,7 @@ http_ts_disconnect_callback (session_t *ts) hc_handle.as_u32 = ts->opaque; - HTTP_DBG (1, "hc [%u]%x", ts->thread_index, hc_index); + HTTP_DBG (1, "hc [%u]%x", ts->thread_index, hc_handle.conn_index); hc = http_conn_get_w_thread (hc_handle.conn_index, ts->thread_index); @@ -543,7 +543,7 @@ http_ts_reset_callback (session_t *ts) hc_handle.as_u32 = ts->opaque; - HTTP_DBG (1, "hc [%u]%x", ts->thread_index, hc_index); + HTTP_DBG (1, "hc [%u]%x", ts->thread_index, hc_handle.conn_index); hc = http_conn_get_w_thread (hc_handle.conn_index, ts->thread_index); @@ -607,7 +607,8 @@ http_ts_cleanup_callback (session_t *ts, session_cleanup_ntf_t ntf) hc_handle.as_u32 = ts->opaque; hc = http_conn_get_w_thread (hc_handle.conn_index, ts->thread_index); - HTTP_DBG (1, "going to free hc [%u]%x", ts->thread_index, hc_index); + HTTP_DBG (1, "going to free hc [%u]%x", ts->thread_index, + hc_handle.conn_index); if (!(hc->flags & HTTP_CONN_F_PENDING_TIMER)) http_conn_timer_stop (hc); |