diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-04-04 18:53:56 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-05-04 14:59:54 +0200 |
commit | 61c01cc4bb615337ee0591fea987eb6bee83a78e (patch) | |
tree | 0b51db320d76c3abbef4018cc269983239babc47 /escape.c | |
parent | 27c0ffd6e475eba00aa8883a822a841a4555cf2d (diff) |
POST using unescaped arguments
Add the ability to make a POST request without
urlencode the arguments. This will only concatenate
them instead.
You can also specify the used separator.
Change-Id: Icb61a5a20771a89e89159132365d86ee4c982d1c
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'escape.c')
-rw-r--r-- | escape.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -313,6 +313,12 @@ char *escape_args(const char * const *args, size_t *length) return escape_url(NULL, NULL, args, length); } +const char *escape_str(const char* str, size_t *length) +{ + const char *a[2] = { str, NULL }; + return escape_args(a, length); +} + const char **unescape_args(const char *args) { const char **r, **q; |