Home
last modified time | relevance | path

Searched refs:decoded (Results 1 – 17 of 17) sorted by relevance

/curl/tests/unit/
H A Dunit1302.c55 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 Didn.c257 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 Durlapi.c773 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 Durl.c1866 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 Dcurl_unescape.md52 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 Dcurl_easy_unescape.md60 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 Dcurl_url_get.md77 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 Dlibcurl-url.md103 Extracted parts are not URL decoded unless the user also asks for it with the
H A Dcurl_url_set.md94 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 Dgetpart.pm178 my $decoded = decode_base64($_);
179 $_ = $decoded;
185 my $decoded = decode_hex($_);
186 $_ = $decoded;
/curl/docs/cmdline-opts/
H A Dhaproxy-clientip.md29 of consecutive zeroes. The total number of decoded bits must exactly be 128.
H A Dpreproxy.md31 User and password that might be provided in the proxy string are URL decoded
H A Dproxy.md49 User and password that might be provided in the proxy string are URL decoded
/curl/docs/libcurl/opts/
H A DCURLOPT_TRANSFER_ENCODING.md39 to be for the transfer and thus MUST be decoded before the data arrives in the
H A DCURLOPT_PROXYUSERPWD.md33 decoded before used, so to include for example a colon in the username you
H A DCURLOPT_DEBUGFUNCTION.md79 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 DCURLOPT_USERPWD.md59 The user and password strings are not URL decoded, so there is no way to send

Completed in 32 milliseconds