Browse Source

Added res_init and res_query

David McCullough 23 years ago
parent
commit
a7c7b0948e
1 changed files with 4 additions and 0 deletions
  1. 4 0
      include/resolv.h

+ 4 - 0
include/resolv.h

@@ -90,4 +90,8 @@ extern void close_nameservers(void);
 extern struct hostent * gethostbyname(const char * name);
 extern struct hostent * gethostbyaddr(const char * addr, int len, int type);
 
+extern int res_init(void);
+extern int res_query(const char *dname, int class, int type,
+	unsigned char *answer, int anslen);
+
 #endif /*_RESOLV_H_*/