diff options
author | Linus Nordberg <linus@nordu.net> | 2012-04-13 13:33:44 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2012-04-17 09:11:49 +0200 |
commit | 883992d876f34a0486e675160a60701dc0a1b66a (patch) | |
tree | a31fe8f1a85a6919fa6370680828e2eb23688c21 /hostport.h | |
parent | 2f7eb5a947e5093f91ed5264d3b0a97859e53769 (diff) |
Add client and server config options IPv4Only and IPv6Only.
Related to RADSECPROXY-37.
TODO: Add documentation.
Diffstat (limited to 'hostport.h')
-rw-r--r-- | hostport.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -17,9 +17,9 @@ struct hostportres *newhostport(char *hostport, char *default_port, uint8_t pref 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 resolvehostport(struct hostportres *hp, int af, int socktype, uint8_t passive); +int resolvehostports(struct list *hostports, int af, int socktype); +struct addrinfo *resolvepassiveaddrinfo(char *hostport, int af, char *default_port, int socktype); int addressmatches(struct list *hostports, struct sockaddr *addr, uint8_t checkport); int connecttcphostlist(struct list *hostports, struct addrinfo *src); |