Commit f16fa5ed authored by Sergey Lyubka's avatar Sergey Lyubka

Merge pull request #492 from RobertDiPaolo/feature/Add_PATCH_Method

Added PATCH to list of valid HTTP Methods.
parents c0ba32f7 98f24767
...@@ -2473,7 +2473,8 @@ int mg_url_decode(const char *src, size_t src_len, char *dst, ...@@ -2473,7 +2473,8 @@ int mg_url_decode(const char *src, size_t src_len, char *dst,
static int is_valid_http_method(const char *s) { static int is_valid_http_method(const char *s) {
return !strcmp(s, "GET") || !strcmp(s, "POST") || !strcmp(s, "HEAD") || return !strcmp(s, "GET") || !strcmp(s, "POST") || !strcmp(s, "HEAD") ||
!strcmp(s, "CONNECT") || !strcmp(s, "PUT") || !strcmp(s, "DELETE") || !strcmp(s, "CONNECT") || !strcmp(s, "PUT") || !strcmp(s, "DELETE") ||
!strcmp(s, "OPTIONS") || !strcmp(s, "PROPFIND") || !strcmp(s, "MKCOL"); !strcmp(s, "OPTIONS") || !strcmp(s, "PROPFIND") || !strcmp(s, "MKCOL") ||
!strcmp(s, "PATCH");
} }
// Parse HTTP request, fill in mg_request structure. // Parse HTTP request, fill in mg_request structure.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment