Searched refs:remain (Results 1 – 24 of 24) sorted by relevance
/curl/tests/data/ |
H A D | test950 | 28 # the custom request just does it lowercase to remain the same command
|
H A D | test38 | 53 # the download target file must remain untouched
|
H A D | test256 | 59 # the download target file must remain untouched
|
H A D | DISABLED | 31 # will silently accept it and remain happy
|
/curl/docs/cmdline-opts/ |
H A D | post303.md | 21 following 303 redirect. A server may require a POST to remain a POST after a
|
H A D | post301.md | 23 server may require a POST to remain a POST after such a redirection. This
|
H A D | post302.md | 23 server may require a POST to remain a POST after such a redirection. This
|
H A D | keepalive-time.md | 20 Set the time a connection needs to remain idle before sending keepalive probes
|
/curl/lib/ |
H A D | ws.c | 270 curl_off_t remain = dec->payload_len - dec->payload_offset; in ws_dec_pass_payload() local 273 while(remain && Curl_bufq_peek(inraw, &inbuf, &inlen)) { in ws_dec_pass_payload() 274 if((curl_off_t)inlen > remain) in ws_dec_pass_payload() 275 inlen = (size_t)remain; in ws_dec_pass_payload() 283 remain = dec->payload_len - dec->payload_offset; in ws_dec_pass_payload() 285 FMT_OFF_T " remain", nwritten, remain); in ws_dec_pass_payload() 288 return remain ? CURLE_AGAIN : CURLE_OK; in ws_dec_pass_payload() 399 curl_off_t remain = (payload_len - (payload_offset + buflen)); in ws_cw_dec_next() local 402 if((frame_flags & CURLWS_PING) && !remain) { in ws_cw_dec_next() 411 else if(buflen || !remain) { in ws_cw_dec_next() [all …]
|
H A D | mqtt.c | 221 static int init_connpack(char *packet, char *remain, int remain_pos) in init_connpack() argument 227 memcpy(&packet[1], remain, remain_pos); in init_connpack() 257 char remain[4] = {0}; in mqtt_connect() local 284 remain_pos = mqtt_encode_len(remain, payloadlen + 10); in mqtt_connect() 298 pos = init_connpack(packet, remain, remain_pos); in mqtt_connect()
|
H A D | sendf.c | 672 curl_off_t remain = ctx->total_len - ctx->read_len; in cr_in_read() local 673 if(remain <= 0) in cr_in_read() 675 else if(remain < (curl_off_t)blen) in cr_in_read() 676 blen = (size_t)remain; in cr_in_read()
|
H A D | mime.c | 1969 curl_off_t remain = ctx->total_len - ctx->read_len; in cr_mime_read() local 1970 if(remain <= 0) in cr_mime_read() 1972 else if(remain < (curl_off_t)blen) in cr_mime_read() 1973 blen = (size_t)remain; in cr_mime_read()
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_PATH_AS_IS.md | 39 sequences to remain in the path and some clients want to pass these on in
|
H A D | CURLOPT_CA_CACHE_TIMEOUT.md | 47 the cached store remain forever. By default, libcurl caches this info for 24
|
H A D | CURLOPT_POSTREDIR.md | 45 POST to remain a POST after such a redirection. This option is meaningful only
|
H A D | CURLOPT_CONNECT_ONLY.md | 49 easy handle must remain added to the multi handle for as long as the
|
H A D | CURLOPT_HTTPPOST.md | 40 documented. The data in this list must remain intact as long as the curl
|
H A D | CURLOPT_DNS_CACHE_TIMEOUT.md | 34 disable caching, or set to -1 to make the cached entries remain forever. By
|
/curl/docs/libcurl/ |
H A D | curl_multi_remove_handle.md | 38 handles and transfers remain unaffected.
|
H A D | libcurl-tutorial.md | 179 transfers using this handle are made. Options remain set in the handle until 623 Since all options on an easy handle are "sticky", they remain the same until 1458 remain valid past the end of the curl_easy_setopt(3) call.
|
/curl/tests/http/testenv/ |
H A D | env.py | 616 remain = int(fsize % line_length) 617 if remain != 0: 619 fd.write(f"{i:09d}-{s}"[0:remain-1] + "\n")
|
/curl/projects/ |
H A D | build-wolfssl.bat | 322 rem For tests to run properly the wolfSSL directory must remain the current.
|
/curl/docs/ |
H A D | TODO | 727 would be good to offer a way for users to select for uploads to remain 1216 transfer A remain the single one. N and M could be set to some sensible
|
H A D | FAQ | 214 curl -- the command line tool -- is to remain a non-graphical command line 1555 probably have to maintain a certain amount of code in C, and to remain rock
|
Completed in 40 milliseconds