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.h | |
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.h')
-rw-r--r-- | escape.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -17,7 +17,8 @@ #pragma once extern char *escape_url(const char *base, const char *path, const char * const *args, size_t *length); -extern char *escape_args(const char * const *args, size_t *length); +extern const char *escape_args(const char * const *args, size_t *length); +extern const char *escape_str(const char *str, size_t *length); extern const char **unescape_args(const char *args); /* vim: set colorcolumn=80: */ |