/curl/tests/data/ |
H A D | test1086 | 26 Long chunk of data that couldn't possibly be sent in the time allotted. 27 Long chunk of data that couldn't possibly be sent in the time allotted. 28 Long chunk of data that couldn't possibly be sent in the time allotted. 29 Long chunk of data that couldn't possibly be sent in the time allotted. 30 Long chunk of data that couldn't possibly be sent in the time allotted. 31 Long chunk of data that couldn't possibly be sent in the time allotted. 32 Long chunk of data that couldn't possibly be sent in the time allotted. 33 Long chunk of data that couldn't possibly be sent in the time allotted. 34 Long chunk of data that couldn't possibly be sent in the time allotted. 35 Long chunk of data that couldn't possibly be sent in the time allotted. [all …]
|
H A D | test1112 | 26 Long chunk of data that couldn't possibly be sent in the time allotted. 27 Long chunk of data that couldn't possibly be sent in the time allotted. 28 Long chunk of data that couldn't possibly be sent in the time allotted. 29 Long chunk of data that couldn't possibly be sent in the time allotted. 30 Long chunk of data that couldn't possibly be sent in the time allotted. 31 Long chunk of data that couldn't possibly be sent in the time allotted. 32 Long chunk of data that couldn't possibly be sent in the time allotted. 33 Long chunk of data that couldn't possibly be sent in the time allotted. 34 Long chunk of data that couldn't possibly be sent in the time allotted. 35 Long chunk of data that couldn't possibly be sent in the time allotted. [all …]
|
H A D | test285 | 24 sent 35 sent
|
H A D | test1243 | 24 sent 35 sent
|
H A D | test1943 | 27 Server: sent-as-trailer 59 Server == sent-as-trailer
|
H A D | test897 | 20 POSTFETCH extra stuff sent in the envelope after the body 66 extra stuff sent in the envelope after the body)
|
H A D | test1073 | 41 it comes from stdin so MUST be sent 66 it comes from stdin so MUST be sent
|
/curl/tests/libtest/ |
H A D | lib2301.c | 32 size_t sent; 34 curl_ws_send(curl, send_payload, strlen(send_payload), &sent, CURLWS_PING); 36 "ws: curl_ws_send returned %d, sent %d\n", result, (int)sent); 71 size_t sent; 73 curl_ws_send(curl, "", 0, &sent, CURLWS_CLOSE); 75 "ws: curl_ws_send returned %d, sent %d\n", result, (int)sent); 99 size_t sent; in writecb() local 113 result = curl_ws_send(easy, pong, 2, &sent, 0, 0); in writecb()
|
H A D | lib2304.c | 31 size_t sent; in send_ping() local 33 curl_ws_send(curl, send_payload, strlen(send_payload), &sent, 0, in send_ping() 36 "ws: curl_ws_send returned %d, sent %d\n", result, (int)sent); in send_ping() 87 size_t sent; in websocket_close() local 89 curl_ws_send(curl, "", 0, &sent, 0, CURLWS_CLOSE); in websocket_close() 91 "ws: curl_ws_send returned %d, sent %u\n", result, (int)sent); in websocket_close()
|
H A D | lib2305.c | 34 size_t sent; in websocket_close() local 36 curl_ws_send(curl, "", 0, &sent, 0, CURLWS_CLOSE); in websocket_close() 38 "ws: curl_ws_send returned %d, sent %d\n", result, (int)sent); in websocket_close()
|
H A D | stub_gssapi.c | 61 enum { NONE, KRB5, NTLM1, NTLM3 } sent; member 140 switch(ctx->sent) { in gss_init_sec_context() 161 switch(ctx->sent) { in gss_init_sec_context() 165 ctx->sent = NTLM1; in gss_init_sec_context() 173 ctx->sent = NTLM3; in gss_init_sec_context() 199 ctx->sent = KRB5; in gss_init_sec_context() 201 ctx->sent = NTLM1; in gss_init_sec_context() 223 (char *) target_name, ctx->sent); in gss_init_sec_context()
|
/curl/tests/http/clients/ |
H A D | ws-pingpong.c | 49 size_t sent; in ping() local 51 curl_ws_send(curl, send_payload, strlen(send_payload), &sent, 0, in ping() 54 "ws: curl_ws_send returned %u, sent %u\n", (int)result, (int)sent); in ping() 90 size_t sent; in websocket_close() local 92 curl_ws_send(curl, "", 0, &sent, 0, CURLWS_CLOSE); in websocket_close() 94 "ws: curl_ws_send returned %u, sent %u\n", (int)result, (int)sent); in websocket_close()
|
/curl/docs/examples/ |
H A D | websocket.c | 41 size_t sent; in ping() local 43 curl_ws_send(curl, send_payload, strlen(send_payload), &sent, 0, in ping() 89 size_t sent; in websocket_close() local 90 (void)curl_ws_send(curl, "", 0, &sent, 0, CURLWS_CLOSE); in websocket_close()
|
/curl/docs/libcurl/opts/ |
H A D | CURLINFO_EARLYDATA_SENT_T.md | 19 CURLINFO_EARLYDATA_SENT_T - get the number of bytes sent as TLS early data 33 were sent to the server as TLSv1.3 early data. When no TLS early 40 The amount is **negative** when the sent data was rejected 43 bytes had been sent, but were rejected, it reports -127 as the amount "sent".
|
H A D | CURLINFO_POSTTRANSFER_TIME_T.md | 19 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. 56 printf("Request sent after: %" CURL_FORMAT_CURL_OFF_T ".%06ld us",
|
H A D | CURLOPT_PROXYHEADER.md | 31 sent to a proxy. The rules for this list is identical to the 34 The headers set with this option is only ever used in requests sent to a proxy 35 - when there is also a request sent to a host.
|
H A D | CURLOPT_VERBOSE.md | 34 is sent to stderr, or the stream set with CURLOPT_STDERR(3). 39 To also get all the protocol data sent and received, consider using the
|
H A D | CURLOPT_HTTPHEADER.md | 79 that are sent with CONNECT to a proxy: CURLOPT_PROXYHEADER(3). Use 91 Host: is not sent at all over the wire. 132 Use CURLOPT_HEADEROPT(3) to make the headers only get sent to where you 133 intend them to get sent. 135 Custom headers are sent in all requests done by the easy handle, which implies 137 (CURLOPT_FOLLOWLOCATION(3)), the same set of custom headers is sent in 142 from being sent to other hosts than the first used one, unless specifically 146 sent to other hosts than the first used one, unless specifically permitted
|
/curl/docs/libcurl/ |
H A D | curl_easy_send.md | 39 sent. The variable **n** points to receives the number of sent bytes. 53 curl_easy_send(3) may return **CURLE_AGAIN** if the only data that was sent 54 was for internal SSL processing, and no other data could be sent. 73 size_t sent; 78 res = curl_easy_send(curl, "hello", 5, &sent); 89 sent into ***n**. Note that this may be less than the amount you wanted to
|
H A D | curl_ws_send.md | 28 size_t *sent, curl_off_t fragsize, 40 *sent* is returned as the number of payload bytes actually sent. 58 has been sent or an error is encountered. 108 size_t sent; 114 res = curl_ws_send(curl, send_payload, strlen(send_payload), &sent, 0, 125 *CURLE_OK* (zero) means that the data was sent properly, non-zero means an
|
/curl/lib/vquic/ |
H A D | vquic.c | 128 ssize_t sent; in do_sendmsg() local 159 if(sent == -1) { in do_sendmsg() 184 assert(pktlen == (size_t)sent); in do_sendmsg() 187 ssize_t sent; in do_sendmsg() 192 while((sent = send(qctx->sockfd, in do_sendmsg() 197 if(sent == -1) { in do_sendmsg() 224 size_t sent; in send_packet_no_gso() local 234 *psent += sent; in send_packet_no_gso() 273 size_t blen, sent; in vquic_flush() local 292 qctx->split_len -= sent; in vquic_flush() [all …]
|
/curl/docs/cmdline-opts/ |
H A D | proxy-header.md | 24 separate header sent to the proxy to what is sent to the actual remote host. 26 curl makes sure that each header you add/replace is sent with the proper 32 knows are not be sent to a proxy.
|
H A D | trace.md | 25 the output sent to stdout. Use `%` as filename to have the output sent to
|
H A D | tls-earlydata.md | 20 This has security implications for the requests sent that way. 25 as part of the TLS "session" sent back to curl. Until curl has seen such 30 sent *before* the TLS handshake is complete. While the early data is also
|
/curl/lib/ |
H A D | smb.h | 48 size_t sent; member
|