Home
last modified time | relevance | path

Searched refs:connect (Results 1 – 25 of 162) sorted by relevance

1234567

/curl/tests/data/
H A Dtest205430 Connect to specific host: use the first "connect-to" string that matches
34connect-to foo::bar: --connect-to :123::456 --next http://www.example.com:%HTTPPORT/%TESTNUMBER --
H A Dtest205016 <connect>
19 </connect>
54 http://www.example.com.%TESTNUMBER/%TESTNUMBER --connect-to ::connect.example.com.%TESTNUMBER:%HTTP…
65 CONNECT connect.example.com.%TESTNUMBER:%HTTPPORT HTTP/1.1
66 Host: connect.example.com.%TESTNUMBER:%HTTPPORT
H A Dtest205517 <connect>
20 </connect>
58 http://www.example.com.%TESTNUMBER/%TESTNUMBER --connect-to ::connect.example.com.%TESTNUMBER:%HTTP…
66 CONNECT connect.example.com.%TESTNUMBER:%HTTPPORT HTTP/1.1
67 Host: connect.example.com.%TESTNUMBER:%HTTPPORT
H A Dtest71417 <connect>
20 </connect>
50 FTP fetch with --proxy set to http:// and with --connect-to
53 ftp://ftp.example.com.%TESTNUMBER/%TESTNUMBER --connect-to ::connect.example.com.%TESTNUMBER:%FTPPO…
H A Dtest71518 <connect>
21 </connect>
52 FTP fetch with --preproxy, --proxy and --connect-to
55 ftp://ftp.example.com.%TESTNUMBER/%TESTNUMBER --connect-to ::connect.example.com.%TESTNUMBER:%FTPPO…
H A Dtest14544 --connect-to
23 --connect-to with IPv6 address w/o IPv6 support!
26 --connect-to localhost:80:[::1]:80 localhost
H A Dtest30206 --connect-to
22 HTTP with invalid --connect-to syntax
25 --connect-to ::example.com:example.com http://example.com:%HTTPPORT/%TESTNUMBER
H A Dtest204934connect-to ::%HOSTIP:%HTTPPORT --next http://www2.example.com:8082/%TESTNUMBER --connect-to :8082:…
H A Dtest194523 <connect>
25 Server: from the connect
28 </connect>
64 Server == from the connect (0/2)
H A Dtest194123 <connect>
25 Server: from the connect
28 </connect>
72 Server == from the connect
H A Dtest195 connect to non-listen
24 attempt connect to non-listening socket
H A Dtest7047 connect to non-listen
23 Attempt connect to non-listening SOCKS4 proxy
H A Dtest7057 connect to non-listen
23 Attempt connect to non-listening SOCKS5 proxy
H A Dtest7037 connect to non-listen
31 Attempt connect to non-listening HTTP server via SOCKS5 proxy
/curl/docs/cmdline-opts/
H A Dconnect-timeout.md4 Long: connect-timeout
6 Help: Maximum time allowed to connect
13 - --connect-timeout 20 $URL
14 - --connect-timeout 3.14 $URL
17 # `--connect-timeout`
H A Dconnect-to.md4 Long: connect-to
14 - --connect-to example.com:443:example.net:8443 $URL
17 # `--connect-to`
19 For a request intended for the `HOST1:PORT1` pair, connect to `HOST2:PORT2`
35 curl --connect-to example.com::127.0.0.1: https://example.com/
40 curl --connect-to ::127.0.0.1: http://example.com/
H A Dsuppress-connect-headers.md4 Long: suppress-connect-headers
14 - --suppress-connect-headers --show-headers -x proxy $URL
17 # `--suppress-connect-headers`
/curl/tests/
H A Dhttp2-server.pl38 my $connect = "127.0.0.1,8990";
76 $connect = $ARGV[1];
77 $connect =~ s/:/,/;
111 my $cmdline="$nghttpx --backend=$connect ".
H A Dhttp3-server.pl38 my $connect = "127.0.0.1,8990";
70 $connect = $ARGV[1];
71 $connect =~ s/:/,/;
111 my $cmdline="$nghttpx --http2-proxy --backend=$connect ".
H A Dhttp-server.pl55 my $connect; # IP to connect to on CONNECT
126 $connect = $ARGV[1];
180 $flags .= "--connect $connect " if($connect);
/curl/docs/libcurl/opts/
H A DCURLINFO_CONNECT_TIME_T.md19 CURLINFO_CONNECT_TIME_T - get the time until connect
49 curl_off_t connect;
53 res = curl_easy_getinfo(curl, CURLINFO_CONNECT_TIME_T, &connect);
55 printf("Time: %" CURL_FORMAT_CURL_OFF_T ".%06ld", connect / 1000000,
56 (long)(connect % 1000000));
H A DCURLINFO_APPCONNECT_TIME_T.md32 from the start until the SSL/SSH connect/handshake to the remote host was
51 curl_off_t connect;
55 res = curl_easy_getinfo(curl, CURLINFO_APPCONNECT_TIME_T, &connect);
57 printf("Time: %" CURL_FORMAT_CURL_OFF_T ".%06ld", connect / 1000000,
58 (long)(connect % 1000000));
H A DCURLINFO_CONNECT_TIME.md18 CURLINFO_CONNECT_TIME - get the time until connect
47 double connect;
51 res = curl_easy_getinfo(curl, CURLINFO_CONNECT_TIME, &connect);
53 printf("Time: %.1f", connect);
H A DCURLOPT_CONNECT_TO.md19 CURLOPT_CONNECT_TO - connect to another host and port instead
32 Pass a pointer to a linked list of strings with "connect to" information to
41 connect to, and CONNECT-TO-PORT is the port to connect to.
50 CONNECT-TO-HOST or CONNECT-TO-PORT is empty, the "connect to" feature is
57 The "connect to" host and port are only used to establish the network
65 The "connect to" host and port are ignored if they are equal to the host and
69 If an HTTP proxy is used for a request having a special "connect to" host or
70 port, and the "connect to" host or port differs from the request's host and
72 specific request. This is necessary because it is not possible to connect to a
H A DCURLINFO_APPCONNECT_TIME.md32 start until the SSL/SSH connect/handshake to the remote host was completed.
51 double connect;
55 res = curl_easy_getinfo(curl, CURLINFO_APPCONNECT_TIME, &connect);
57 printf("Time: %.1f", connect);

Completed in 28 milliseconds

1234567