summaryrefslogtreecommitdiff
path: root/tls.c
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 /tls.c
parent2f7eb5a947e5093f91ed5264d3b0a97859e53769 (diff)
Add client and server config options IPv4Only and IPv6Only.
Related to RADSECPROXY-37. TODO: Add documentation.
Diffstat (limited to 'tls.c')
-rw-r--r--tls.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tls.c b/tls.c
index 0282d63..ba2c5a3 100644
--- a/tls.c
+++ b/tls.c
@@ -82,7 +82,9 @@ static char **getlistenerargs() {
void tlssetsrcres() {
if (!srcres)
- srcres = resolvepassiveaddrinfo(protoopts ? protoopts->sourcearg : NULL, NULL, protodefs.socktype);
+ srcres =
+ resolvepassiveaddrinfo(protoopts ? protoopts->sourcearg : NULL,
+ AF_UNSPEC, NULL, protodefs.socktype);
}
int tlsconnect(struct server *server, struct timeval *when, int timeout, char *text) {