1
0
mirror of https://frontier.innolan.net/rainlance/c-ares.git synced 2026-03-17 05:54:54 +00:00

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.
This commit is contained in:
Gunter Knauf
2009-09-05 15:12:30 +00:00
parent 6616621ffe
commit 091393e79c
4 changed files with 13 additions and 13 deletions

6
ares.h
View File

@ -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;
};