Skip to content

Commit

Permalink
Merge pull request modcluster#280 from jajik/drop-methods
Browse files Browse the repository at this point in the history
Remove unsupported methods from the codebase
  • Loading branch information
rhusar authored Sep 15, 2024
2 parents ca38365 + 1c5f059 commit 4779589
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions native/mod_manager/mod_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 4779589

Please sign in to comment.