Commit b56e985c authored by Alexander Alashkin's avatar Alexander Alashkin Committed by rojer

Use mg_parse_uri in ws, add mg_mk_str function

    PUBLISHED_FROM=650ce03aaf53f4c501fbb77a3ae0b584278e299a
parent 67521fd9
...@@ -7115,6 +7115,11 @@ int mg_match_prefix(const char *pattern, int pattern_len, const char *str) { ...@@ -7115,6 +7115,11 @@ int mg_match_prefix(const char *pattern, int pattern_len, const char *str) {
} }
return j; return j;
} }
struct mg_str mg_mk_str(const char *s) {
struct mg_str ret = {s, strlen(s)};
return ret;
}
#ifdef NS_MODULE_LINES #ifdef NS_MODULE_LINES
#line 1 "./src/json-rpc.c" #line 1 "./src/json-rpc.c"
/**/ /**/
......
...@@ -1475,6 +1475,9 @@ const char *mg_next_comma_list_entry(const char *list, struct mg_str *val, ...@@ -1475,6 +1475,9 @@ const char *mg_next_comma_list_entry(const char *list, struct mg_str *val,
*/ */
int mg_match_prefix(const char *pattern, int pattern_len, const char *str); int mg_match_prefix(const char *pattern, int pattern_len, const char *str);
/* A helper function for creating mg_str struct from plain C string */
struct mg_str mg_mk_str(const char *s);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif /* __cplusplus */ #endif /* __cplusplus */
......
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