From d474a97922f2344f57481ffcfea05d30a3d466a2 Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Tue, 4 Jan 2022 23:15:13 +0000 Subject: [PATCH] add missing prototype --- server.c | 1 + 1 file changed, 1 insertion(+) diff --git a/server.c b/server.c index 2faf792..eac2a23 100644 --- a/server.c +++ b/server.c @@ -47,6 +47,7 @@ static void handle_handshake(int, short, void*); static const char *strip_path(const char*, int); static void fmt_sbuf(const char*, struct client*, const char*); static int apply_block_return(struct client*); +static int check_matching_certificate(X509_STORE *, struct client *); static int apply_reverse_proxy(struct client *); static int apply_fastcgi(struct client*); static int apply_require_ca(struct client*);