Home
last modified time | relevance | path

Searched refs:last (Results 1 – 25 of 174) sorted by relevance

1234567

/curl/tests/unit/
H A Dunit1308.c49 struct curl_httppost *last = NULL; variable
54 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
61 fail_unless(post == last, "post and last weren't the same");
64 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
71 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
88 post = last = NULL;
91 rc = curl_formadd(&post, &last,
/curl/src/
H A Dslist_wc.c55 list->last = new_item; in slist_wc_append()
59 list->last->next = new_item; in slist_wc_append()
60 list->last = list->last->next; in slist_wc_append()
H A Dtool_cfgable.c195 struct OperationConfig *last = config; in config_free() local
198 while(last) { in config_free()
199 struct OperationConfig *prev = last->prev; in config_free()
201 free_config_fields(last); in config_free()
202 free(last); in config_free()
204 last = prev; in config_free()
H A Dslist_wc.h33 struct curl_slist *last; member
H A Dtool_main.c156 config->first = config->last = malloc(sizeof(struct OperationConfig)); in main_init()
210 config_free(config->last); in main_free()
212 config->last = NULL; in main_free()
H A Dtool_paramhlp.c45 struct getout *last = config->url_last; in new_getout() local
50 if(last) in new_getout()
51 last->next = node; in new_getout()
533 const bool last, /* TRUE if last operation */ in checkpasswd() argument
559 if(!i && last) in checkpasswd()
671 bool last = (config->next ? FALSE : TRUE); in get_args() local
687 result = checkpasswd("host", i, last, &config->userpwd); in get_args()
694 result = checkpasswd("proxy", i, last, &config->proxyuserpwd); in get_args()
H A Dtool_parsecfg.c55 struct OperationConfig *operation = global->last; in parseconfig()
196 operation = global->last; in parseconfig()
214 global->last = operation->next; in parseconfig()
/curl/lib/
H A Dslist.c63 struct curl_slist *last; in Curl_slist_append_nodup() local
79 last = slist_get_last(list); in Curl_slist_append_nodup()
80 last->next = new_item; in Curl_slist_append_nodup()
H A Dstrtok.h30 char *Curl_strtok_r(char *s, const char *delim, char **last);
/curl/tests/data/
H A Dtest58615 last line
22 last line
H A Dtest148535 get curlinfo on last header in callback
/curl/docs/libcurl/opts/
H A DCURLOPT_CONNECTTIMEOUT_MS.md43 the value set last is used.
49 5000, the operation can never last longer than 5000 milliseconds, and the
50 connection phase cannot last longer than 3000 milliseconds.
53 2000, the operation can never last longer than 2000 milliseconds. Including
H A DCURLOPT_CONNECTTIMEOUT.md42 are set, the value set last is used.
48 to 5, the operation can never last longer than 5 seconds, and the connection
49 phase cannot last longer than 3 seconds.
52 to 2, the operation can never last longer than 2 seconds. Including the
H A DCURLINFO_CONN_ID.md18 CURLINFO_CONN_ID - get the ID of the last connection used by the handle
31 Pass a pointer to a *curl_off_t* to receive the connection identifier last
H A DCURLINFO_POSTTRANSFER_TIME_T.md19 CURLINFO_POSTTRANSFER_TIME_T - get the time until the last byte is sent
33 it took from the start until the last byte is sent by libcurl.
H A DCURLINFO_RESPONSE_CODE.md21 CURLINFO_RESPONSE_CODE - get the last response code
33 Pass a pointer to a long to receive the last received HTTP, FTP, SMTP or LDAP
H A DCURLINFO_EFFECTIVE_URL.md18 CURLINFO_EFFECTIVE_URL - get the last used URL
30 Pass in a pointer to a char pointer and get the last used effective URL.
H A DCURLINFO_EFFECTIVE_METHOD.md19 CURLINFO_EFFECTIVE_METHOD - get the last used HTTP method
32 Pass in a pointer to a char pointer and get the last used effective HTTP
H A DCURLOPT_TIMEOUT.md39 value set last is used.
52 to 5, the operation can never last longer than 5 seconds.
55 to 2, the operation can never last longer than 2 seconds.
H A DCURLINFO_LASTSOCKET.md19 CURLINFO_LASTSOCKET - get the last socket used
33 Pass a pointer to a long to receive the last socket used by this curl
/curl/docs/cmdline-opts/
H A Dwrite-out.md67 The connection identifier last used by the transfer. The connection id is
100 The numerical response code that was found in the last retrieved HTTP(S) or
104 The numerical code that was found in the last response (from a proxy) to a
171 The numerical response code that was found in the last transfer (formerly
225 The time it took from the start until the last byte is sent by libcurl.
286 The user part of the effective (last) URL that was fetched. (Added in 8.1.0)
295 The host part of the effective (last) URL that was fetched. (Added in 8.1.0)
298 The port number of the effective (last) URL that was fetched. If no port
303 The path part of the effective (last) URL that was fetched. (Added in 8.1.0)
306 The query part of the effective (last) URL that was fetched. (Added in 8.1.0)
[all …]
H A Drange.md31 specifies the last 500 bytes
37 specifies the first and last byte only(*)(HTTP)
H A Dhead.md23 curl displays the file size and last modification time only.
/curl/docs/libcurl/
H A Dcurl_formadd.md220 struct curl_httppost *last = NULL;
235 curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
239 curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
244 curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
248 curl_formadd(&post, &last, CURLFORM_PTRNAME, namebuffer,
259 curl_formadd(&post, &last, CURLFORM_COPYNAME, "picture",
263 curl_formadd(&post, &last, CURLFORM_COPYNAME, "picture",
268 curl_formadd(&post, &last, CURLFORM_COPYNAME, "pictures",
280 curl_formadd(&post, &last,
288 curl_formadd(&post, &last, CURLFORM_COPYNAME, "pictures",
[all …]
H A Dcurl_easy_getinfo.md85 The ID of the last connection used by the transfer. (Added in 8.2.0)
158 Source IP address of the last connection. See CURLINFO_LOCAL_IP(3)
162 Source port number of the last connection. See CURLINFO_LOCAL_PORT(3)
181 The errno from the last failure to connect. See CURLINFO_OS_ERRNO(3)
185 The time it took from the start until the last byte is sent by libcurl.
204 Destination IP address of the last connection. See CURLINFO_PRIMARY_IP(3)
208 Destination port of the last connection. See CURLINFO_PRIMARY_PORT(3)
281 RTSP CSeq last received. See CURLINFO_RTSP_CSEQ_RECV(3)

Completed in 27 milliseconds

1234567