summaryrefslogtreecommitdiff
path: root/hostport.h
diff options
context:
space:
mode:
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);