/curl/docs/libcurl/opts/ |
H A D | CURLOPT_PORT.md | 18 CURLOPT_PORT - remote port number to connect to 25 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_PORT, long number); 31 predict. Set the preferred port number in the URL instead. 33 This option sets *number* to be the remote port number to connect to, 40 While this option accepts a 'long', a port number is an unsigned 16 bit number 41 and therefore using a port number lower than zero or over 65535 causes a 46 0 which makes it not used. This also makes port number zero impossible to set
|
H A D | CURLINFO_LOCAL_PORT.md | 20 CURLINFO_LOCAL_PORT - get the latest local port number 32 Pass a pointer to a long to receive the local port number of the most recent 35 If the connection was done using QUIC, the port number is a UDP port number, 36 otherwise it is a TCP port number.
|
H A D | CURLOPT_LOCALPORTRANGE.md | 17 CURLOPT_LOCALPORTRANGE - number of additional local ports to try 30 Pass a long. The *range* argument is the number of attempts libcurl makes 31 to find a working local port number. It starts with the given 32 CURLOPT_LOCALPORT(3) and adds one to the number for each retry. Setting 34 number. Port numbers by nature are scarce resources that are busy at times so
|
H A D | CURLOPT_PROXYPORT.md | 19 CURLOPT_PROXYPORT - port number the proxy listens on 38 libcurl use the default proxy port number or the port number specified in the 41 While this accepts a 'long', the port number is 16 bit so it cannot be larger
|
H A D | CURLOPT_RTSP_CLIENT_CSEQ.md | 19 CURLOPT_RTSP_CLIENT_CSEQ - RTSP client CSEQ number 31 Pass a long to set the CSEQ number to issue for the next RTSP request. Useful 33 increments from this new number henceforth.
|
H A D | CURLMOPT_MAX_PIPELINE_LENGTH.md | 17 CURLMOPT_MAX_PIPELINE_LENGTH - maximum number of requests in a pipeline 32 Pass a long. The set **max** number is used as the maximum amount of 39 number of requests in-flight is CURLMOPT_MAX_HOST_CONNECTIONS(3) *
|
H A D | CURLINFO_PRIMARY_PORT.md | 19 CURLINFO_PRIMARY_PORT - get the latest destination port number 35 If a proxy was used for the most recent transfer, this is the port number of 36 the proxy, if no proxy was used it is the port number of the most recently
|
H A D | CURLOPT_TCP_KEEPCNT.md | 18 CURLOPT_TCP_KEEPCNT - Maximum number of TCP keep-alive probes 30 Pass a long. Sets the number of probes to send before dropping 62 /* maximum number of keep-alive probes: 3 */
|
H A D | CURLOPT_MAXREDIRS.md | 18 CURLOPT_MAXREDIRS - maximum number of redirects allowed 30 Pass a long. The set number is the redirection limit *amount*. If that 37 Set it to -1 for an infinite number of redirects. This allows your application
|
H A D | CURLOPT_PROGRESSFUNCTION.md | 52 transferred, in number of bytes. *dltotal* is the total number of bytes 53 libcurl expects to download in this transfer. *dlnow* is the number of 54 bytes downloaded so far. *ultotal* is the total number of bytes libcurl 55 expects to upload in this transfer. *ulnow* is the number of bytes
|
H A D | CURLOPT_XFERINFOFUNCTION.md | 48 already transferred, in number of bytes. *dltotal* is the total number of 49 bytes libcurl expects to download in this transfer. *dlnow* is the number 50 of bytes downloaded so far. *ultotal* is the total number of bytes libcurl 51 expects to upload in this transfer. *ulnow* is the number of bytes
|
H A D | CURLINFO_REDIRECT_COUNT.md | 19 CURLINFO_REDIRECT_COUNT - get the number of redirects 32 Pass a pointer to a long to receive the total number of redirections that were
|
H A D | CURLOPT_RTSP_SERVER_CSEQ.md | 18 CURLOPT_RTSP_SERVER_CSEQ - RTSP server CSEQ number 30 Pass a long to set the CSEQ number to expect for the next RTSP Server to
|
H A D | CURLMOPT_MAXCONNECTS.md | 31 enlarges the size for each added easy handle to make it fit 4 times the number 38 to prevent the number of connections from increasing. 43 See CURLMOPT_MAX_TOTAL_CONNECTIONS(3) for limiting the number of active
|
/curl/docs/cmdline-opts/ |
H A D | connect-to.md | 21 NOT affect the hostname/port number that is used for TLS/SSL (e.g. SNI, 24 `HOST1` and `PORT1` may be empty strings, meaning any host or any port number. 26 original hostname and port number. 33 independently of port number: 38 port number:
|
H A D | max-redirs.md | 6 Help: Maximum number of redirects allowed 19 Set maximum number of redirections to follow. When --location is used, to
|
H A D | local-port.md | 6 Help: Use a local port number within RANGE 18 Set a preferred single number or range (FROM-TO) of local port numbers to use
|
H A D | rate.md | 22 Specify the maximum transfer frequency you allow curl to use - in number of 30 The request rate is provided as "N/U" where N is an integer number and U is a 33 is number of transfers per hour. 44 Starting in version 8.10.0, you can specify number of time units in the rate
|
H A D | keepalive-cnt.md | 6 Help: Maximum number of keepalive probes 19 Set the maximum number of keepalive probes TCP should send but get no response
|
/curl/.github/workflows/ |
H A D | hacktoberfest-accepted.yml | 50 gh pr view {} --json number,createdAt \ 51 … --jq '{number, opened: .createdAt} | [.number, .opened] | join(":")' | tee /dev/stderr | \ 61 gh pr view "https://{}" --json number,createdAt \ 62 … --jq '{number, opened: .createdAt} | [.number, .opened] | join(":")' | tee /dev/stderr | \
|
/curl/tests/data/ |
H A D | test1059 | 38 ftp://test-number:%TESTNUMBER/wanted/page -p -x %HOSTIP:%HTTPPORT 50 CONNECT test-number:%TESTNUMBER HTTP/1.1 51 Host: test-number:%TESTNUMBER
|
H A D | test435 | 49 # replace the number with a fixed string since the port number is not 50 # known to the test script but it should always be a decimal number
|
H A D | test1235 | 17 the number one 70 the number one 80 the number one
|
H A D | test539 | 16 contents for file number two 21 contents for file number two
|
/curl/lib/ |
H A D | strtoofft.c | 216 curl_off_t number; in curlx_strtoofft() local 228 number = strtooff(str, &end, base); in curlx_strtoofft() 238 *num = number; in curlx_strtoofft()
|