aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-02-21 17:15:09 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-02-21 17:15:09 +0000
commitda06a6e7e34d9f1c9c6cf6574aec75f4ed704b9c (patch)
tree3ccbef119adfb65cfa6127d60fb33fc197520502 /lib/urldata.h
parent46e0937263df22f091cb7367182ff6095f73b82e (diff)
IPv6-adjustments
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index fe098c3f6..d1c770a11 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -218,7 +218,8 @@ struct connectdata {
#define PROT_FILE (1<<8)
#ifdef ENABLE_IPV6
- struct addrinfo *res;
+ struct addrinfo *hp; /* host info pointer list */
+ struct addrinfo *ai; /* the particular host we use */
#else
char *hostent_buf; /* pointer to allocated memory for name info */
struct hostent *hp;