From bd8013ee8cf3522230f413cf2b7ec0b895cd5979 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Tue, 1 Feb 2022 13:17:13 -0800 Subject: http_static: add support for async tx from handlers URL handlers can send data asynchronously if needed. Type: improvement Signed-off-by: Florin Coras Change-Id: I89eae690cb26543479c7659b5dc46604cbb22eba --- src/plugins/http_static/http_static.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/http_static/http_static.c') diff --git a/src/plugins/http_static/http_static.c b/src/plugins/http_static/http_static.c index b8d6931b4c6..4afe42291db 100644 --- a/src/plugins/http_static/http_static.c +++ b/src/plugins/http_static/http_static.c @@ -33,7 +33,7 @@ #include __clib_export void -hss_register_url_handler (hss_url_handler_t fp, const char *url, +hss_register_url_handler (hss_url_handler_fn fp, const char *url, http_req_method_t request_type) { hss_main_t *hsm = &hss_main; -- cgit 1.2.3-korg