mirror of
https://github.com/curl/curl.git
synced 2026-07-23 17:47:15 +03: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
2 changed files with 2 additions and 2 deletions
|
|
@ -41,7 +41,7 @@ All
|
|||
CURL *curl = curl_easy_init();
|
||||
if(curl) {
|
||||
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 */
|
||||
curl_easy_setopt(curl, CURLOPT_LOCALPORTRANGE, 20L);
|
||||
ret = curl_easy_perform(curl);
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ All
|
|||
CURL *curl = curl_easy_init();
|
||||
if(curl) {
|
||||
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 */
|
||||
curl_easy_setopt(curl, CURLOPT_LOCALPORTRANGE, 20L);
|
||||
ret = curl_easy_perform(curl);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue