]> granicus.if.org Git - curl/commitdiff
Added CURLOPT_PROXYPORT
authorDaniel Stenberg <daniel@haxx.se>
Tue, 25 Jul 2000 07:38:08 +0000 (07:38 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 25 Jul 2000 07:38:08 +0000 (07:38 +0000)
include/curl/curl.h

index c00345d0a245bc7a46c2477b550aec723d956ba4..b49d66df9a3966109db4f5b8237cc97e13495007 100644 (file)
@@ -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 {