mirror of
https://github.com/curl/curl.git
synced 2026-08-25 00:13:34 +03:00
Added CURLOPT_LOCALPORT and CURLOPT_LOCALPORTRANGE to libcurl. Set with the
curl tool with --local-port. Plain and simply set the range of ports to bind the local end of connections to. Implemented on to popular demand. Not extensively tested. Please let me know how it works.
This commit is contained in:
parent
32bc30e210
commit
2fbf94b0f3
9 changed files with 196 additions and 103 deletions
17
lib/url.c
17
lib/url.c
|
|
@ -1222,13 +1222,26 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
|
|||
*/
|
||||
data->set.crlf = va_arg(param, long)?TRUE:FALSE;
|
||||
break;
|
||||
|
||||
case CURLOPT_INTERFACE:
|
||||
/*
|
||||
* Set what interface to bind to when performing an operation and thus
|
||||
* what from-IP your connection will use.
|
||||
* Set what interface or address/hostname to bind the socket to when
|
||||
* performing an operation and thus what from-IP your connection will use.
|
||||
*/
|
||||
data->set.device = va_arg(param, char *);
|
||||
break;
|
||||
case CURLOPT_LOCALPORT:
|
||||
/*
|
||||
* Set what local port to bind the socket to when performing an operation.
|
||||
*/
|
||||
data->set.localport = (unsigned short) va_arg(param, long);
|
||||
break;
|
||||
case CURLOPT_LOCALPORTRANGE:
|
||||
/*
|
||||
* Set number of local ports to try, starting with CURLOPT_LOCALPORT.
|
||||
*/
|
||||
data->set.localportrange = (int) va_arg(param, long);
|
||||
break;
|
||||
case CURLOPT_KRB4LEVEL:
|
||||
/*
|
||||
* A string that defines the krb4 security level.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue