X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5787a5c839c1f49fec942290449d18b72b036d98..fa4e03e6589cdadc2145fb3483c8517bb0316cee:/examples/msg/dht-kademlia/node.h diff --git a/examples/msg/dht-kademlia/node.h b/examples/msg/dht-kademlia/node.h index 9a5eab29df..0659d7db25 100644 --- a/examples/msg/dht-kademlia/node.h +++ b/examples/msg/dht-kademlia/node.h @@ -17,7 +17,9 @@ typedef struct s_node_contact { unsigned int id; //The node identifier unsigned int distance; //The distance from the node -} s_node_contact_t, *node_contact_t; +} s_node_contact_t; + +typedef s_node_contact_t *node_contact_t; /* Node data */ typedef struct s_node { @@ -26,11 +28,13 @@ typedef struct s_node { msg_comm_t receive_comm; //current receiving communication. msg_task_t task_received; //current task being received - char mailbox[MAILBOX_NAME_SIZE+1]; //node mailbox + char mailbox[MAILBOX_NAME_SIZE]; //node mailbox unsigned int find_node_success; //Number of find_node which have succeeded. unsigned int find_node_failed; //Number of find_node which have failed. -} s_node_t, *node_t; +} s_node_t; + +typedef s_node_t *node_t; // node functions node_t node_init(unsigned int id);