fix getaddrinfo error code for non-numeric service with AI_NUMERICSERV
[musl] / src / network / lookup.h
index 4e45d86..0468edb 100644 (file)
@@ -2,6 +2,7 @@
 #define LOOKUP_H
 
 #include <stdint.h>
+#include <stddef.h>
 
 struct address {
        int family;
@@ -12,7 +13,15 @@ struct address {
 
 struct service {
        uint16_t port;
-       char proto;
+       unsigned char proto, socktype;
+};
+
+#define MAXNS 3
+
+struct resolvconf {
+       struct address ns[MAXNS];
+       unsigned nns, attempts, ndots;
+       unsigned timeout;
 };
 
 /* The limit of 48 results is a non-sharp bound on the number of addresses
@@ -21,8 +30,10 @@ struct service {
 #define MAXADDRS 48
 #define MAXSERVS 2
 
-int __lookup_serv(struct service buf[static MAXSERVS], const char *name, int proto, int flags);
+int __lookup_serv(struct service buf[static MAXSERVS], const char *name, int proto, int socktype, int flags);
 int __lookup_name(struct address buf[static MAXADDRS], char canon[static 256], const char *name, int family, int flags);
 int __lookup_ipliteral(struct address buf[static 1], const char *name, int family);
 
+int __get_resolv_conf(struct resolvconf *, char *, size_t);
+
 #endif