From 392c109abc2a14421f4e56f587b8d24a6fb3d6c3 Mon Sep 17 00:00:00 2001 From: venaas Date: Thu, 29 Jan 2009 13:44:58 +0000 Subject: minor fixes to hostport stuff git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@464 e88ac4ed-0b26-0410-9574-a7f39faa03bf --- hostport.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hostport.c') diff --git a/hostport.c b/hostport.c index b392346..b934626 100644 --- a/hostport.c +++ b/hostport.c @@ -14,7 +14,7 @@ #include "list.h" #include "hostport.h" -static void freehostport(struct hostportres *hp) { +void freehostport(struct hostportres *hp) { if (hp) { free(hp->host); free(hp->port); @@ -74,7 +74,7 @@ static int parsehostport(struct hostportres *hp, char *hostport, char *default_p return 1; } -static struct hostportres *newhostport(char *hostport, char *default_port, uint8_t prefixok) { +struct hostportres *newhostport(char *hostport, char *default_port, uint8_t prefixok) { struct hostportres *hp; char *slash, *s; int plen; @@ -126,7 +126,7 @@ static struct hostportres *newhostport(char *hostport, char *default_port, uint8 return NULL; } -static int resolvehostport(struct hostportres *hp, int socktype, uint8_t passive) { +int resolvehostport(struct hostportres *hp, int socktype, uint8_t passive) { struct addrinfo hints, *res; memset(&hints, 0, sizeof(hints)); -- cgit v1.2.3