summaryrefslogtreecommitdiff
path: root/hostport.h
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.h
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.h')
-rw-r--r--hostport.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/hostport.h b/hostport.h
index a2dc240..ff3a309 100644
--- a/hostport.h
+++ b/hostport.h
@@ -13,8 +13,11 @@ struct hostportres {
struct addrinfo *addrinfo;
};
+struct hostportres *newhostport(char *hostport, char *default_port, uint8_t prefixok);
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 addressmatches(struct list *hostports, struct sockaddr *addr);