Conversion to struct addrinfo is almost complete for this file.
[tinc] / src / edge.h
index 3bd475e..0de989a 100644 (file)
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: edge.h,v 1.1.2.2 2001/10/28 10:16:18 guus Exp $
+    $Id: edge.h,v 1.1.2.4 2001/11/16 12:13:34 zarq Exp $
 */
 
 #ifndef __TINC_EDGE_H__
@@ -33,8 +33,7 @@
 typedef struct halfconnection_t {
   struct node_t *node;             /* node associated with this end of the connection */
 
-  ipv4_t address;                  /* real (internet) ip on this end of the meta connection */
-  short unsigned int port;         /* port number of this end of the meta connection */
+  struct addrinfo *address;        /* real (internet) ip on this end of the meta connection */
   char *hostname;                  /* the hostname of real ip */
 } halfconnection_t;
 
@@ -55,6 +54,8 @@ extern void init_edges(void);
 extern void exit_edges(void);
 extern edge_t *new_edge(void);
 extern void free_edge(edge_t *);
+extern avl_tree_t *new_edge_tree(void);
+extern void free_edge_tree(avl_tree_t *);
 extern void edge_add(edge_t *);
 extern void edge_del(edge_t *);
 extern edge_t *lookup_edge(struct node_t *, struct node_t *);