diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-04-17 17:00:04 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-05-04 14:59:54 +0200 |
commit | fdea435076e718b2731aa6ad994cc49ff7e96477 (patch) | |
tree | c379acbc2ea99a10e91d794c35abca9f02418a35 | |
parent | 61c01cc4bb615337ee0591fea987eb6bee83a78e (diff) |
Add new function to retrieve HTTP response code
Change-Id: I1d01c95d6418646ef9d2f8f4b07210a33b10c117
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | curl-wrap.c | 9 | ||||
-rw-r--r-- | curl-wrap.h | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/curl-wrap.c b/curl-wrap.c index d2aacaf..851eeb7 100644 --- a/curl-wrap.c +++ b/curl-wrap.c @@ -171,6 +171,15 @@ int curl_wrap_content_type_is(CURL *curl, const char *value) return !strncasecmp(actual, value, strcspn(actual, "; ")); } +long curl_wrap_response_code_get(CURL *curl) +{ + long rc; + CURLcode code; + + code = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &rc); + return (code == CURLE_OK) ? rc : 0; +} + CURL *curl_wrap_prepare_get_url(const char *url) { CURL *curl; diff --git a/curl-wrap.h b/curl-wrap.h index a6106e4..3b42ef4 100644 --- a/curl-wrap.h +++ b/curl-wrap.h @@ -29,6 +29,8 @@ extern void curl_wrap_do(CURL *curl, void (*callback)(void *closure, int status, extern int curl_wrap_content_type_is (CURL * curl, const char *value); +extern long curl_wrap_response_code_get(CURL *curl); + extern CURL *curl_wrap_prepare_get_url(const char *url); extern CURL *curl_wrap_prepare_get(const char *base, const char *path, const char * const *args); |