Added dir mode in client

This commit is contained in:
2020-12-18 22:39:18 +01:00
parent 50f5438654
commit c7902ea5b5
2 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ int client_websocket_handler() {
int client_request_handler(sock *client, int req_num) {
struct timespec begin, end;
int ret, client_keep_alive;
int ret, client_keep_alive, dir_mode;
char buf[1024];
char msg_buf[4096];
char msg_pre_buf[4096];
@ -102,8 +102,9 @@ int client_request_handler(sock *client, int req_num) {
print(BLD_STR "%s %s" CLR_STR, req.method, req.uri);
webroot = get_webroot(host);
dir_mode = URI_DIR_MODE_FORBIDDEN;
http_uri uri;
ret = uri_init(&uri, webroot, req.uri, URI_DIR_MODE_INFO);
ret = uri_init(&uri, webroot, req.uri, dir_mode);
if (ret != 0) {
if (ret == 1) {
sprintf(err_msg, "Invalid URI: has to start with slash.");

View File

@ -61,7 +61,6 @@ int uri_init(http_uri *uri, const char *webroot, const char *uri_str, int dir_mo
uri->req_path = malloc(size);
url_decode(uri_str, uri->req_path, &size);
if (strstr(uri->req_path, "/../") != NULL || strstr(uri->req_path, "/./") != NULL) {
if (uri->query != NULL) free(uri->query);
return 2;
}