diff options
Diffstat (limited to 'hostport.h')
-rw-r--r-- | hostport.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -13,8 +13,11 @@ struct hostportres { struct addrinfo *addrinfo; }; +struct hostportres *newhostport(char *hostport, char *default_port, uint8_t prefixok); int addhostport(struct list **hostports, char *hostport, char *portdefault, uint8_t prefixok); +void freehostport(struct hostportres *hp); void freehostports(struct list *hostports); +int resolvehostport(struct hostportres *hp, int socktype, uint8_t passive); int resolvehostports(struct list *hostports, int socktype); struct addrinfo *resolvepassiveaddrinfo(char *hostport, char *default_port, int socktype); int addressmatches(struct list *hostports, struct sockaddr *addr); |