/curl/tests/unit/ |
H A D | unit1302.c | 55 unsigned char *decoded; variable 124 verify_memory(decoded, "iiii", 4); 125 Curl_safefree(decoded); 130 verify_memory(decoded, "iii", 3); 131 Curl_safefree(decoded); 136 verify_memory(decoded, "ii", 2); 137 Curl_safefree(decoded); 142 verify_memory(decoded, "i", 2); 143 Curl_safefree(decoded); 147 decoded = &anychar; /* not NULL */ [all …]
|
/curl/lib/ |
H A D | idn.c | 257 char *decoded = NULL; in idn_decode() local 269 int rc = IDN2_LOOKUP(input, &decoded, flags); in idn_decode() 273 rc = IDN2_LOOKUP(input, &decoded, IDN2_TRANSITIONAL); in idn_decode() 281 result = win32_idn_to_ascii(input, &decoded); in idn_decode() 283 result = mac_idn_to_ascii(input, &decoded); in idn_decode() 286 *output = decoded; in idn_decode() 369 char *decoded; in Curl_idnconvert_hostname() local 370 CURLcode result = Curl_idn_decode(host->name, &decoded); in Curl_idnconvert_hostname() 374 host->name = host->encalloc = decoded; in Curl_idnconvert_hostname()
|
H A D | urlapi.c | 773 char *decoded; in urldecode_host() local 774 CURLcode result = Curl_urldecode(hostname, 0, &decoded, &dlen, in urldecode_host() 779 result = Curl_dyn_addn(host, decoded, dlen); in urldecode_host() 780 free(decoded); in urldecode_host() 1642 char *decoded; in curl_url_get() local 1646 CURLcode res = Curl_urldecode(*part, 0, &decoded, &dlen, REJECT_CTRL); in curl_url_get() 1652 *part = decoded; in curl_url_get() 1995 char *decoded = NULL; in curl_url_set() local 1997 Curl_urldecode(newp, n, &decoded, &dlen, REJECT_CTRL); in curl_url_set() 1998 if(result || hostname_check(u, decoded, dlen)) in curl_url_set() [all …]
|
H A D | url.c | 1866 char *decoded; local 1867 result = Curl_urldecode(data->state.up.password, 0, &decoded, NULL, 1872 conn->passwd = decoded; 1873 result = Curl_setstropt(&data->state.aptr.passwd, decoded); 1888 char *decoded; local 1889 result = Curl_urldecode(data->state.up.user, 0, &decoded, NULL, 1894 conn->user = decoded; 1895 result = Curl_setstropt(&data->state.aptr.user, decoded);
|
/curl/docs/libcurl/ |
H A D | curl_unescape.md | 52 char *decoded = curl_unescape("%63%75%72%6c", 12); 53 if(decoded) { 54 /* do not assume printf() works on the decoded data */ 57 curl_free(decoded);
|
H A D | curl_easy_unescape.md | 60 char *decoded = curl_easy_unescape(curl, "%63%75%72%6c", 12, &decodelen); 61 if(decoded) { 62 /* do not assume printf() works on the decoded data */ 65 curl_free(decoded);
|
H A D | curl_url_get.md | 77 If there are byte values lower than 32 in the decoded string, the get 161 Scheme cannot be URL decoded on get. 189 A port cannot be URL decoded on get. This number is returned in a string just
|
H A D | libcurl-url.md | 103 Extracted parts are not URL decoded unless the user also asks for it with the
|
H A D | curl_url_set.md | 94 When a full URL is set (parsed), the hostname component is stored URL decoded. 98 Scheme cannot be URL decoded on set. libcurl only accepts setting schemes up
|
/curl/tests/ |
H A D | getpart.pm | 178 my $decoded = decode_base64($_); 179 $_ = $decoded; 185 my $decoded = decode_hex($_); 186 $_ = $decoded;
|
/curl/docs/cmdline-opts/ |
H A D | haproxy-clientip.md | 29 of consecutive zeroes. The total number of decoded bits must exactly be 128.
|
H A D | preproxy.md | 31 User and password that might be provided in the proxy string are URL decoded
|
H A D | proxy.md | 49 User and password that might be provided in the proxy string are URL decoded
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_TRANSFER_ENCODING.md | 39 to be for the transfer and thus MUST be decoded before the data arrives in the
|
H A D | CURLOPT_PROXYUSERPWD.md | 33 decoded before used, so to include for example a colon in the username you
|
H A D | CURLOPT_DEBUGFUNCTION.md | 79 data is encoded or compressed, it is not provided decoded nor decompressed 80 to this callback. If you need the data in decoded and decompressed form, use
|
H A D | CURLOPT_USERPWD.md | 59 The user and password strings are not URL decoded, so there is no way to send
|