From 1c5f059a87f159b99aaaab3aedcdcdc23b34c860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Chlup?= Date: Wed, 11 Sep 2024 16:44:50 +0200 Subject: [PATCH] Remove unsupported methods from the codebase These methods are undocummented, without an implementation, and were never used --- native/mod_manager/mod_manager.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/native/mod_manager/mod_manager.c b/native/mod_manager/mod_manager.c index 2c5d6671..bf0eaadc 100644 --- a/native/mod_manager/mod_manager.c +++ b/native/mod_manager/mod_manager.c @@ -2618,18 +2618,10 @@ static int is_our_method(const request_rec *r) ours = 1; } else if (strcasecmp(r->method, "DUMP") == 0) { ours = 1; - } else if (strcasecmp(r->method, "ERROR") == 0) { - ours = 1; } else if (strcasecmp(r->method, "INFO") == 0) { ours = 1; } else if (strcasecmp(r->method, "PING") == 0) { ours = 1; - } else if (strcasecmp(r->method, "ADDID") == 0) { - ours = 1; - } else if (strcasecmp(r->method, "REMOVEID") == 0) { - ours = 1; - } else if (strcasecmp(r->method, "QUERY") == 0) { - ours = 1; } else if (strcasecmp(r->method, "VERSION") == 0) { ours = 1; }