diff options
author | 2025-03-07 04:34:59 -0500 | |
---|---|---|
committer | 2025-03-10 20:37:16 +0000 | |
commit | 067c66f80ea2173d605ecf741fe5caca82b23606 (patch) | |
tree | fcf7ac28a4bdfa5f790df255c083ec021eba9ae2 /src/plugins/http/http_timer.h | |
parent | 0e503263c2a594eecb069a79b02487a951fb24cf (diff) |
http: http_transport_connect TLS support
enable HTTPS for client apps
Type: improvement
Change-Id: I2ca8b926771a350863cca81729102faf6ee9c874
Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'src/plugins/http/http_timer.h')
-rw-r--r-- | src/plugins/http/http_timer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/http/http_timer.h b/src/plugins/http/http_timer.h index 3bd12f7821d..50f634c5397 100644 --- a/src/plugins/http/http_timer.h +++ b/src/plugins/http/http_timer.h @@ -59,7 +59,7 @@ http_conn_timer_stop (http_conn_t *hc) { http_tw_ctx_t *twc = &http_tw_ctx; - hc->pending_timer = 0; + hc->flags &= ~HTTP_CONN_F_PENDING_TIMER; if (hc->timer_handle == HTTP_TIMER_HANDLE_INVALID) return; |