summaryrefslogtreecommitdiff
path: root/hostport.h
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2012-04-13 13:33:44 +0200
committerLinus Nordberg <linus@nordu.net>2012-04-17 09:11:49 +0200
commit883992d876f34a0486e675160a60701dc0a1b66a (patch)
treea31fe8f1a85a6919fa6370680828e2eb23688c21 /hostport.h
parent2f7eb5a947e5093f91ed5264d3b0a97859e53769 (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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/hostport.h b/hostport.h
index 425bb8f..207e2ba 100644
--- a/hostport.h
+++ b/hostport.h
@@ -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);