aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-11-17 09:48:21 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-11-17 09:48:21 +0000
commit2297bc4791e1cb5c6ed034b4d4a1355c1e4e1b0c (patch)
tree5fc1b23d1d286d3a1e1cd69e99d55b009447b4be /lib/urldata.h
parent34a2d446e09971101fd779bd5f9e6ade3e32986a (diff)
changed the 'port' field to long to better work with the va_arg() system
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 29b4e725f..bda19f73b 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -331,7 +331,7 @@ struct ssldata {
bool use; /* use ssl encrypted communications TRUE/FALSE */
long version; /* what version the client wants to use */
long certverifyresult; /* result from the certificate verification */
- bool verifypeer; /* set TRUE if this is desired */
+ long verifypeer; /* set TRUE if this is desired */
char *CApath; /* DOES NOT WORK ON WINDOWS */
char *CAfile; /* cerficate to verify peer against */
#ifdef USE_SSLEAY
@@ -401,8 +401,8 @@ struct UrlData {
char *url; /* what to get */
char *freethis; /* if non-NULL, an allocated string for the URL */
char *hostname; /* hostname to connect, as parsed from url */
- unsigned short port; /* which port to use (if non-protocol bind) set
- CONF_PORT to use this */
+ long port; /* which port to use (if non-protocol bind) set
+ CONF_PORT to use this */
unsigned short remote_port; /* what remote port to connect to, not the proxy
port! */
struct Configbits bits; /* new-style (v7) flag data */