Blob Blame History Raw
Add missing function prototypes to internal headers.

diff --git a/list.h b/list.h
index 89d07fe2995ccdf0..8ac25d18e795564e 100644
--- a/list.h
+++ b/list.h
@@ -14,6 +14,8 @@ struct list* new_list();
 
 struct list_item* new_list_item(unsigned long content);
 
+int in_list(struct list* lst, unsigned long content);
+
 void delete_list(struct list* list);
 	
 int compare(struct list_item* item1, struct list_item* item2);
diff --git a/statusq.h b/statusq.h
index 33ff09c774bfc740..d00aaf6d5ae34e78 100644
--- a/statusq.h
+++ b/statusq.h
@@ -103,4 +103,8 @@ typedef struct nb_service {
 	char* service_name;
 } nb_service_t ;
 
+struct nb_host_info* parse_response(char* buff, int buffsize);
+char* getnbservicename(my_uint8_t service, int unique, char* name);
+int send_query(int sock, struct in_addr dest_addr, my_uint32_t rtt_base);
+
 #endif /* STATUSQ_H */