mirror of
https://github.com/curl/curl.git
synced 2026-07-23 01:47:16 +03:00
Added CURLOPT_PROXYPORT
This commit is contained in:
parent
c8262b2be6
commit
841f370a96
1 changed files with 6 additions and 2 deletions
|
|
@ -366,6 +366,10 @@ typedef enum {
|
|||
/* We want the referer field set automatically when following locations */
|
||||
T(AUTOREFERER, LONG, 58),
|
||||
|
||||
/* Port of the proxy, can be set in the proxy string as well with:
|
||||
"[host]:[port]" */
|
||||
T(PROXYPORT, LONG, 59),
|
||||
|
||||
CURLOPT_LASTENTRY /* the last unusued */
|
||||
} CURLoption;
|
||||
|
||||
|
|
@ -409,8 +413,8 @@ char *curl_getenv(char *variable);
|
|||
char *curl_version(void);
|
||||
|
||||
/* This is the version number */
|
||||
#define LIBCURL_VERSION "7.0.7beta"
|
||||
#define LIBCURL_VERSION_NUM 0x070007
|
||||
#define LIBCURL_VERSION "7.0.8beta"
|
||||
#define LIBCURL_VERSION_NUM 0x070008
|
||||
|
||||
/* linked-list structure for the CURLOPT_QUOTE option */
|
||||
struct curl_slist {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue