mirror of
https://github.com/moparisthebest/curl
synced 2025-02-28 17:31:46 -05:00
doc: use meaningless port number in CURLOPT_LOCALPORT example
Use an ephemeral port number here; previously the example had 8080 which could be confusing as the common web server port number might be misinterpreted as suggesting this option affects the remote port. URL: https://curl.haxx.se/mail/lib-2019-01/0084.html Closes #3513
This commit is contained in:
parent
06f744d447
commit
427fa512be
@ -41,7 +41,7 @@ All
|
|||||||
CURL *curl = curl_easy_init();
|
CURL *curl = curl_easy_init();
|
||||||
if(curl) {
|
if(curl) {
|
||||||
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com/foo.bin");
|
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com/foo.bin");
|
||||||
curl_easy_setopt(curl, CURLOPT_LOCALPORT, 8080L);
|
curl_easy_setopt(curl, CURLOPT_LOCALPORT, 49152L);
|
||||||
/* and try 20 more ports following that */
|
/* and try 20 more ports following that */
|
||||||
curl_easy_setopt(curl, CURLOPT_LOCALPORTRANGE, 20L);
|
curl_easy_setopt(curl, CURLOPT_LOCALPORTRANGE, 20L);
|
||||||
ret = curl_easy_perform(curl);
|
ret = curl_easy_perform(curl);
|
||||||
|
@ -45,7 +45,7 @@ All
|
|||||||
CURL *curl = curl_easy_init();
|
CURL *curl = curl_easy_init();
|
||||||
if(curl) {
|
if(curl) {
|
||||||
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com/foo.bin");
|
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com/foo.bin");
|
||||||
curl_easy_setopt(curl, CURLOPT_LOCALPORT, 8080L);
|
curl_easy_setopt(curl, CURLOPT_LOCALPORT, 49152L);
|
||||||
/* and try 20 more ports following that */
|
/* and try 20 more ports following that */
|
||||||
curl_easy_setopt(curl, CURLOPT_LOCALPORTRANGE, 20L);
|
curl_easy_setopt(curl, CURLOPT_LOCALPORTRANGE, 20L);
|
||||||
ret = curl_easy_perform(curl);
|
ret = curl_easy_perform(curl);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user