chiark / gitweb /
+ * Better checking of long domain names and labels in queries.
[adns.git] / client / adnshost.h
index cbde4c2d9046260ea842074001bf4087ddac9d49..93a7608b11bfc8213684c009df1bb4daf5da2430 100644 (file)
@@ -37,6 +37,7 @@
 #include <stdlib.h>
 #include <assert.h>
 
+#include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
@@ -89,7 +90,7 @@ void opt_do(const struct optioninfo *oip, const char *arg, int invert);
 struct query_node {
   struct query_node *next, *back;
   struct perqueryflags_remember pqfr;
-  char *id;
+  char *id, *owner;
   adns_query qu;
 };