aboutsummaryrefslogtreecommitdiff
path: root/lib/url.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-04-05 21:13:31 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-04-05 21:13:31 +0000
commit34d837c2dd1915e4e491460858c3481548ad067f (patch)
tree38afece3c1b9f80d988ffd46960450f4c05eca81 /lib/url.h
parent7607d5145bbacd76d45bca405edc12f4b613418c (diff)
provide CURL_DEFAULT_PROXY_PORT set to 1080 for the default port libcurl
assumes proxies to use
Diffstat (limited to 'lib/url.h')
-rw-r--r--lib/url.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/lib/url.h b/lib/url.h
index e38138f91..229f40866 100644
--- a/lib/url.h
+++ b/lib/url.h
@@ -72,20 +72,11 @@ int Curl_removeHandleFromPipeline(struct SessionHandle *handle,
void Curl_close_connections(struct SessionHandle *data);
-#if 0
-CURLcode Curl_protocol_fdset(struct connectdata *conn,
- fd_set *read_fd_set,
- fd_set *write_fd_set,
- int *max_fdp);
-CURLcode Curl_doing_fdset(struct connectdata *conn,
- fd_set *read_fd_set,
- fd_set *write_fd_set,
- int *max_fdp);
-#endif
-
/* Called on connect, and if there's already a protocol-specific struct
allocated for a different connection, this frees it that it can be setup
properly later on. */
void Curl_reset_reqproto(struct connectdata *conn);
+#define CURL_DEFAULT_PROXY_PORT 1080 /* default proxy port unless specified */
+
#endif