curl_url_get(3) | libcurl Manual | curl_url_get(3) |
curl_url_get - extract a part from a URL
#include <curl/curl.h>
CURLUcode curl_url_get(CURLU *url,
CURLUPart what,
char **part,
unsigned int flags)
Given the url handle of an already parsed URL, this function lets the user extract individual pieces from it.
The what argument should be the particular part to extract (see list below) and part points to a 'char *' to get updated to point to a newly allocated string with the contents.
The flags argument is a bitmask with individual features.
The returned part pointer must be freed with curl_free(3) after use.
The flags argument is zero, one or more bits set in a bitmask.
The query component will also get plus-to-space conversion as a bonus when this bit is set.
Note that this URL decoding is charset unaware and you will get a zero terminated string back with data that could be intended for a particular encoding.
If there's any byte values lower than 32 in the decoded string, the get operation will return an error instead.
Returns a CURLUcode error value, which is CURLUE_OK (0) if everything went fine.
If this function returns an error, no URL part is returned.
CURLUcode rc;
CURLU *url = curl_url();
rc = curl_url_set(url, CURLUPART_URL, "https://example.com", 0);
if(!rc) {
char *scheme;
rc = curl_url_get(url, CURLUPART_SCHEME, &scheme, 0);
if(!rc) {
printf("the scheme is %s\n", scheme);
curl_free(scheme);
}
curl_url_cleanup(url);
}
Added in curl 7.62.0
curl_url_cleanup(3), curl_url(3), curl_url_set(3), curl_url_dup(3),
October 8, 2018 | libcurl 7.64.0 |