From 6e4294f8e8a9efd7e5e5670554fe18d7462c5fe3 Mon Sep 17 00:00:00 2001 From: default Date: Wed, 21 Sep 2022 21:12:49 +0200 Subject: Added a webfinger handler. --- httpd.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'httpd.c') diff --git a/httpd.c b/httpd.c index 7cd73cc..8e798a4 100644 --- a/httpd.c +++ b/httpd.c @@ -109,6 +109,9 @@ void httpd_connection(int rs) /* cascade through */ if (status == 0) server_get_handler(req, q_path, &status, &body, &b_size, &ctype); + + if (status == 0) + webfinger_get_handler(req, q_path, &status, &body, &b_size, &ctype); } else if (strcmp(method, "POST") == 0) { -- cgit v1.2.3