From b2c826400343cb0e56bf565b8b9c3072c998c22d Mon Sep 17 00:00:00 2001 From: default Date: Wed, 28 Sep 2022 05:22:08 +0200 Subject: Added dummy HTTP handlers for html. --- httpd.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'httpd.c') diff --git a/httpd.c b/httpd.c index 447d30c..3ff13c6 100644 --- a/httpd.c +++ b/httpd.c @@ -127,20 +127,29 @@ void httpd_connection(int rs) if (status == 0) status = activitypub_get_handler(req, q_path, &body, &b_size, &ctype); + + if (status == 0) + status = html_get_handler(req, q_path, &body, &b_size, &ctype); } else if (strcmp(method, "POST") == 0) { if (status == 0) status = activitypub_post_handler(req, q_path, payload, p_size, &body, &b_size, &ctype); + + if (status == 0) + status = html_post_handler(req, q_path, + payload, p_size, &body, &b_size, &ctype); } /* let's go */ headers = xs_dict_new(); /* unattended? it's an error */ - if (status == 0) + if (status == 0) { + srv_debug(1, xs_fmt("httpd_connection unattended %s %s", method, q_path)); status = 404; + } if (status == 404) body = xs_str_new("

404 Not Found

"); -- cgit v1.2.3