X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fnode.h;fp=src%2Fnode.h;h=fa27bfd2926ce90ad81becd1a9052cf03a2f6d2e;hb=1c1ea3e501944f1e49cb65add689d9cd6dea8af6;hp=1c9f230afd2e551eb19088989e55f09116d3d16c;hpb=7f7b53dc2011fc8ceda1e0678d9f78b1dbd8c1d1;p=meshlink diff --git a/src/node.h b/src/node.h index 1c9f230a..fa27bfd2 100644 --- a/src/node.h +++ b/src/node.h @@ -26,7 +26,6 @@ #include "connection.h" #include "digest.h" #include "event.h" -#include "subnet.h" typedef struct node_status_t { unsigned int unused_active:1; /* 1 if active (not used for nodes) */ @@ -70,8 +69,6 @@ typedef struct node_t { struct edge_t *prevedge; /* nearest node from him to us */ struct node_t *via; /* next hop for UDP packets */ - splay_tree_t *subnet_tree; /* Pointer to a tree of subnets belonging to this node */ - splay_tree_t *edge_tree; /* Edges with this node as one of the endpoints */ struct connection_t *connection; /* Connection associated with this node (if a direct connection exists) */ @@ -112,8 +109,6 @@ extern void node_add(node_t *); extern void node_del(node_t *); extern node_t *lookup_node(char *); extern node_t *lookup_node_udp(const sockaddr_t *); -extern bool dump_nodes(struct connection_t *); -extern bool dump_traffic(struct connection_t *); extern void update_node_udp(node_t *, const sockaddr_t *); #endif /* __TINC_NODE_H__ */