diff options
author | John Marshall <John.W.Marshall@glasgow.ac.uk> | 2019-01-31 11:52:51 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-01-31 13:54:59 +0100 |
commit | 427fa512be481b21c4d57b27127766fa26f70d6a (patch) | |
tree | 971ebe93c030d4d858f5fe672f0aa58bf21a2465 /docs/libcurl/opts | |
parent | 06f744d447af6648a00f0571116b5b901854abc4 (diff) |
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
Diffstat (limited to 'docs/libcurl/opts')
-rw-r--r-- | docs/libcurl/opts/CURLOPT_LOCALPORT.3 | 2 | ||||
-rw-r--r-- | docs/libcurl/opts/CURLOPT_LOCALPORTRANGE.3 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/libcurl/opts/CURLOPT_LOCALPORT.3 b/docs/libcurl/opts/CURLOPT_LOCALPORT.3 index 79239ec15..1911b7c1a 100644 --- a/docs/libcurl/opts/CURLOPT_LOCALPORT.3 +++ b/docs/libcurl/opts/CURLOPT_LOCALPORT.3 @@ -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); diff --git a/docs/libcurl/opts/CURLOPT_LOCALPORTRANGE.3 b/docs/libcurl/opts/CURLOPT_LOCALPORTRANGE.3 index dfa231380..86f6b2823 100644 --- a/docs/libcurl/opts/CURLOPT_LOCALPORTRANGE.3 +++ b/docs/libcurl/opts/CURLOPT_LOCALPORTRANGE.3 @@ -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); |