From 55fbf55c17cc88884aa20e7070bc813000a3b193 Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Tue, 6 Dec 2022 08:39:29 -0500 Subject: http_static: fix http(s) redirects Add an http redirect template to generate correct-looking "301 Moved Permanently" replies. Supply a default value of 1<<31 for the use_ptr_thresh config parameter. Expose hss_session_get() so friend plugins which register GET / POST handlers with the http_static server can add data to the session fifos. Type: fix Signed-off-by: Dave Barach Change-Id: Ie1452eaf61c6f67311fbab092bc1fe03050bf94f --- src/plugins/http_static/http_static.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/plugins/http_static/http_static.h') diff --git a/src/plugins/http_static/http_static.h b/src/plugins/http_static/http_static.h index c754337e303..4e038ed385d 100644 --- a/src/plugins/http_static/http_static.h +++ b/src/plugins/http_static/http_static.h @@ -163,6 +163,7 @@ void hss_register_url_handler (hss_url_handler_fn fp, const char *url, http_req_method_t type); void hss_session_send_data (hss_url_handler_args_t *args); void hss_builtinurl_json_handlers_init (void); +hss_session_t *hss_session_get (u32 thread_index, u32 hs_index); #endif /* __included_http_static_h__ */ -- cgit 1.2.3-korg