Home
last modified time | relevance | path

Searched refs:sent (Results 1 – 25 of 124) sorted by relevance

12345

/curl/tests/data/
H A Dtest108628 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.
36 Long chunk of data that couldn't possibly be sent in the time allotted.
37 Long chunk of data that couldn't possibly be sent in the time allotted.
[all …]
H A Dtest111228 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.
36 Long chunk of data that couldn't possibly be sent in the time allotted.
37 Long chunk of data that couldn't possibly be sent in the time allotted.
[all …]
H A Dtest28524 sent
35 sent
H A Dtest124324 sent
35 sent
H A Dtest194327 Server: sent-as-trailer
59 Server == sent-as-trailer
H A Dtest107341 it comes from stdin so MUST be sent
66 it comes from stdin so MUST be sent
H A Dtest89720 POSTFETCH extra stuff sent in the envelope after the body
66 extra stuff sent in the envelope after the body)
/curl/tests/libtest/
H A Dlib2301.c32 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 Dlib2304.c31 size_t sent; in ping() local
33 curl_ws_send(curl, send_payload, strlen(send_payload), &sent, 0, in ping()
36 "ws: curl_ws_send returned %d, sent %d\n", result, (int)sent); in 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 Dlib2305.c33 size_t sent; in websocket_close() local
35 curl_ws_send(curl, "", 0, &sent, 0, CURLWS_CLOSE); in websocket_close()
37 "ws: curl_ws_send returned %d, sent %d\n", result, (int)sent); in websocket_close()
H A Dstub_gssapi.c61 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 Dws-pingpong.c45 size_t sent; in ping() local
47 curl_ws_send(curl, send_payload, strlen(send_payload), &sent, 0, in ping()
50 "ws: curl_ws_send returned %u, sent %u\n", (int)result, (int)sent); in ping()
86 size_t sent; in websocket_close() local
88 curl_ws_send(curl, "", 0, &sent, 0, CURLWS_CLOSE); in websocket_close()
90 "ws: curl_ws_send returned %u, sent %u\n", (int)result, (int)sent); in websocket_close()
H A Dws-data.c162 size_t sent; in websocket_close() local
164 curl_ws_send(curl, "", 0, &sent, 0, CURLWS_CLOSE); in websocket_close()
166 "ws: curl_ws_send returned %u, sent %u\n", (int)result, (int)sent); in websocket_close()
/curl/docs/examples/
H A Dwebsocket.c35 size_t sent; in ping() local
37 curl_ws_send(curl, send_payload, strlen(send_payload), &sent, 0, in ping()
83 size_t sent; in websocket_close() local
84 (void)curl_ws_send(curl, "", 0, &sent, 0, CURLWS_CLOSE); in websocket_close()
/curl/lib/vquic/
H A Dvquic.c136 ssize_t sent; in do_sendmsg() local
167 if(sent == -1) { in do_sendmsg()
192 assert(pktlen == (size_t)sent); in do_sendmsg()
195 ssize_t sent; in do_sendmsg()
200 while((sent = send(qctx->sockfd, in do_sendmsg()
205 if(sent == -1) { in do_sendmsg()
232 size_t sent; in send_packet_no_gso() local
242 *psent += sent; in send_packet_no_gso()
281 size_t blen, sent; in vquic_flush() local
300 qctx->split_len -= sent; in vquic_flush()
[all …]
/curl/docs/libcurl/
H A Dcurl_easy_send.md38 sent. The variable **n** points to receives the number of sent bytes.
52 curl_easy_send(3) may return **CURLE_AGAIN** if the only data that was sent
53 was for internal SSL processing, and no other data could be sent.
70 size_t sent;
75 res = curl_easy_send(curl, "hello", 5, &sent);
88 sent into ***n**. Note that this may be less than the amount you wanted to
H A Dcurl_ws_send.md27 size_t *sent, curl_off_t fragsize,
39 *sent* is returned as the number of payload bytes actually sent.
101 size_t sent;
107 res = curl_ws_send(curl, send_payload, strlen(send_payload), &sent, 0,
120 *CURLE_OK* (zero) means that the data was sent properly, non-zero means an
/curl/docs/cmdline-opts/
H A Dproxy-header.md24 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 Dtrace.md25 the output sent to stdout. Use "%" as filename to have the output sent to
/curl/docs/libcurl/opts/
H A DCURLOPT_PROXYHEADER.md30 sent to a proxy. The rules for this list is identical to the
33 The headers set with this option is only ever used in requests sent to a proxy
34 - when there is also a request sent to a host.
H A DCURLOPT_VERBOSE.md33 is sent to stderr, or the stream set with CURLOPT_STDERR(3).
38 To also get all the protocol data sent and received, consider using the
H A DCURLOPT_HTTPHEADER.md79 that are sent with CONNECT to a proxy: CURLOPT_PROXYHEADER(3). Use
91 Host: is not sent at all over the wire.
130 Use CURLOPT_HEADEROPT(3) to make the headers only get sent to where you
131 intend them to get sent.
133 Custom headers are sent in all requests done by the easy handle, which implies
135 (CURLOPT_FOLLOWLOCATION(3)), the same set of custom headers is sent in
140 from being sent to other hosts than the first used one, unless specifically
144 sent to other hosts than the first used one, unless specifically permitted
H A DCURLOPT_CUSTOMREQUEST.md38 string sent in the request.
55 custom request libcurl still acts as if it sent a HEAD. To switch to a proper
65 to replace or extend the set of headers sent by libcurl. Use
83 command was sent where it expects data to be returned by the server. As such
/curl/lib/
H A Dsmb.h48 size_t sent; member
/curl/include/curl/
H A Dwebsockets.h71 size_t buflen, size_t *sent,

Completed in 45 milliseconds

12345