mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-04 09:49:01 +08:00
189cd8c5f6
PUBLISHED_FROM=533e134a48e0fca55509c3eb16b0a6b64c1188e8
704 B
704 B
title | decl_name | symbol_kind | signature |
---|---|---|---|
mg_assemble_uri() | mg_assemble_uri | func | int mg_assemble_uri(const struct mg_str *scheme, const struct mg_str *user_info, const struct mg_str *host, unsigned int port, const struct mg_str *path, const struct mg_str *query, const struct mg_str *fragment, int normalize_path, struct mg_str *uri); |
Assemble URI from parts. Any of the inputs can be NULL or zero-length mg_str.
If normalize_path is true, path is normalized by resolving relative refs.
Result is a heap-allocated string (uri->p must be free()d after use).
Returns 0 on success, -1 on error.