forked from aniani/gmnisrv
serve: make hostname matching case-insensitive
Reported-by: James Tomasino <james@tomasino.org> Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
parent
5783501752
commit
1925bc3e7a
@ -8,6 +8,7 @@
|
|||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <strings.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
@ -637,7 +638,7 @@ request_validate(struct gmnisrv_client *client, char **path)
|
|||||||
client_submit_response(client,
|
client_submit_response(client,
|
||||||
GEMINI_STATUS_BAD_REQUEST, error, NULL);
|
GEMINI_STATUS_BAD_REQUEST, error, NULL);
|
||||||
goto exit;
|
goto exit;
|
||||||
} else if (strcmp(part, client->host->hostname) != 0) {
|
} else if (strcasecmp(part, client->host->hostname) != 0) {
|
||||||
free(part);
|
free(part);
|
||||||
const char *error = "Protocol error: hostname does not match SNI";
|
const char *error = "Protocol error: hostname does not match SNI";
|
||||||
client_submit_response(client,
|
client_submit_response(client,
|
||||||
|
Loading…
Reference in New Issue
Block a user