aboutsummaryrefslogtreecommitdiff
path: root/ares/ares.h
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2009-09-05 15:12:30 +0000
committerGunter Knauf <gk@gknw.de>2009-09-05 15:12:30 +0000
commitf3611c2773c95128166e1fd84726a2f3da50629b (patch)
tree94dc27a08602d355384ad87616eadbe8f730800e /ares/ares.h
parentd5de8495523f63f79c6013da009c759ca063edfa (diff)
changed u_int16_t to unsigned short because it is the only place within ares and curl where such a type would be used;
also it broke many autobuilds. We should probably introduce an ares_port_t if we want to use a type here.
Diffstat (limited to 'ares/ares.h')
-rw-r--r--ares/ares.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ares/ares.h b/ares/ares.h
index bfca7dae1..ad7c4d57a 100644
--- a/ares/ares.h
+++ b/ares/ares.h
@@ -323,9 +323,9 @@ struct addr6ttl {
};
struct srv_reply {
- u_int16_t weight;
- u_int16_t priority;
- u_int16_t port;
+ unsigned short weight;
+ unsigned short priority;
+ unsigned short port;
char *host;
};