Use a global list to track outgoing connections.
[tinc] / src / net.h
index d845f1a..487fcae 100644 (file)
--- a/src/net.h
+++ b/src/net.h
@@ -103,6 +103,7 @@ typedef struct listen_socket_t {
 } listen_socket_t;
 
 #include "conf.h"
+#include "list.h"
 
 typedef struct outgoing_t {
        char *name;
@@ -112,6 +113,8 @@ typedef struct outgoing_t {
        struct addrinfo *aip;
 } outgoing_t;
 
+extern list_t *outgoing_list;
+
 extern int maxoutbufsize;
 extern int seconds_till_retry;
 extern int addressfamily;