summaryrefslogtreecommitdiff
path: root/hostport.c
diff options
context:
space:
mode:
authorvenaas <venaas>2009-01-29 13:44:58 +0000
committervenaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf>2009-01-29 13:44:58 +0000
commit392c109abc2a14421f4e56f587b8d24a6fb3d6c3 (patch)
treeff6ab4b2cbe18c3f64e3df9270e7a3c89c4d1903 /hostport.c
parent9f542fc2c8905be58015a428f0240ebff20658ef (diff)
minor fixes to hostport stuff
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@464 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'hostport.c')
-rw-r--r--hostport.c6
1 files changed, 3 insertions, 3 deletions
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));