X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9cc88bb9ed0a8974e524f67198984a1e03cb00b0..d51e11eeca324570cf038a3bf6a5d05109903633:/examples/msg/kademlia/routing_table.h diff --git a/examples/msg/kademlia/routing_table.h b/examples/msg/kademlia/routing_table.h index d13b40e6c0..df34fa5645 100644 --- a/examples/msg/kademlia/routing_table.h +++ b/examples/msg/kademlia/routing_table.h @@ -13,16 +13,16 @@ * Routing table bucket */ typedef struct s_bucket { - xbt_dynar_t nodes; //Nodes in the bucket. - unsigned int id; //bucket id + xbt_dynar_t nodes; //Nodes in the bucket. + unsigned int id; //bucket id } s_bucket_t, *bucket_t; /* * Node routing table */ typedef struct s_routing_table { - unsigned int id; //node id of the client's routing table - s_bucket_t *buckets; //Node bucket list - 160 sized. + unsigned int id; //node id of the client's routing table + s_bucket_t *buckets; //Node bucket list - 160 sized. } s_routing_table_t, *routing_table_t; // bucket functions unsigned int bucket_find_id(bucket_t bucket, unsigned int id); @@ -30,9 +30,10 @@ unsigned int bucket_contains(bucket_t bucket, unsigned int id); // routing table functions routing_table_t routing_table_init(unsigned int node_id); void routing_table_free(routing_table_t table); -unsigned int routing_table_contains(routing_table_t table, unsigned int node_id); +unsigned int routing_table_contains(routing_table_t table, + unsigned int node_id); void routing_table_print(routing_table_t table); bucket_t routing_table_find_bucket(routing_table_t table, unsigned int id); - -#endif /* _MSG_KADEMLIA_EXAMPLES_ROUTING_TABLE */ + +#endif /* _MSG_KADEMLIA_EXAMPLES_ROUTING_TABLE */