diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2000-07-25 07:38:08 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2000-07-25 07:38:08 +0000 | 
| commit | 841f370a9625f9508a3e2f1194139c758af48756 (patch) | |
| tree | 49153174445d0d509f92507f686eff1f7bedd3d7 | |
| parent | c8262b2be6c4650e71f6f1befbfbbc415f3fac32 (diff) | |
Added CURLOPT_PROXYPORT
| -rw-r--r-- | include/curl/curl.h | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/include/curl/curl.h b/include/curl/curl.h index c00345d0a..b49d66df9 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -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 { | 
