X-Git-Url: http://git.meshlink.io/?p=meshlink;a=blobdiff_plain;f=src%2Fnode.h;h=2568f182aaf17cca2ca1d9dcce52f16c2b8a3efa;hp=9fad554550f0da2b3cc62da77dc0ce6c21637403;hb=fa05f996c5500c056a36c1d43e33a407f876643c;hpb=6086a7fc1ecdf197d3937cec5f291b83c5d68454 diff --git a/src/node.h b/src/node.h index 9fad5545..2568f182 100644 --- a/src/node.h +++ b/src/node.h @@ -39,7 +39,8 @@ typedef struct node_status_t { unsigned int blacklisted: 1; /* 1 if the node is blacklist so we never want to speak with him anymore */ unsigned int destroyed: 1; /* 1 if the node is being destroyed, deallocate channels when any callback is triggered */ unsigned int duplicate: 1; /* 1 if the node is duplicate, ie. multiple nodes using the same Name are online */ - unsigned int unused: 20; + unsigned int dirty: 1; /* 1 if the configuration of the node is dirty and needs to be written out */ + unsigned int unused: 19; } node_status_t; typedef struct node_t { @@ -47,7 +48,7 @@ typedef struct node_t { void *priv; uint32_t options; /* options turned on for this node */ - dev_class_t devclass; + int32_t devclass; struct meshlink_handle *mesh; /* The mesh this node belongs to */ struct submesh_t *submesh; /* Nodes Sub-Mesh Handle*/ @@ -70,7 +71,7 @@ typedef struct node_t { struct edge_t *prevedge; /* nearest node from him to us */ struct node_t *via; /* next hop for UDP packets */ - struct splay_tree_t *edge_tree; /* Edges with this node as one of the endpoints */ + struct 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) */ time_t last_connect_try; @@ -88,16 +89,19 @@ typedef struct node_t { uint64_t in_bytes; uint64_t out_packets; uint64_t out_bytes; + + char *canonical_address; /* The canonical address of this node, if known */ + sockaddr_t recent[5]; /* Recently seen addresses */ } node_t; extern void init_nodes(struct meshlink_handle *mesh); extern void exit_nodes(struct meshlink_handle *mesh); extern node_t *new_node(void) __attribute__((__malloc__)); -extern void free_node(node_t *); -extern void node_add(struct meshlink_handle *mesh, node_t *); -extern void node_del(struct meshlink_handle *mesh, node_t *); -extern node_t *lookup_node(struct meshlink_handle *mesh, const char *); -extern node_t *lookup_node_udp(struct meshlink_handle *mesh, const sockaddr_t *); -extern void update_node_udp(struct meshlink_handle *mesh, node_t *, const sockaddr_t *); +extern void free_node(node_t *n); +extern void node_add(struct meshlink_handle *mesh, node_t *n); +extern void node_del(struct meshlink_handle *mesh, node_t *n); +extern node_t *lookup_node(struct meshlink_handle *mesh, const char *name); +extern node_t *lookup_node_udp(struct meshlink_handle *mesh, const sockaddr_t *sa); +extern void update_node_udp(struct meshlink_handle *mesh, node_t *n, const sockaddr_t *sa); #endif