Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Energy, onHostDestruction: ensured ptr existence
[simgrid.git] / examples / msg / kademlia / kademlia.h
index d9f193d..1fce788 100644 (file)
@@ -1,19 +1,18 @@
-
-/* Copyright (c) 2012. The SimGrid Team.
+/* Copyright (c) 2012, 2014. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
+
 #ifndef _MSG_EXAMPLES_KADEMLIA_H
 #define _MSG_EXAMPLES_KADEMLIA_H
 #include "node.h"
 #include "task.h"
-//process functions
-static int node(int argc, char *argv[]);
-static void main_loop(node_t node, unsigned int deadline);
+
 //core kademlia functions
 unsigned int join(node_t node, unsigned int id_known);
-unsigned int find_node(node_t node, unsigned int id_to_find, unsigned int count_in_stats);
+unsigned int find_node(node_t node, unsigned int id_to_find,
+                       unsigned int count_in_stats);
 unsigned int ping(node_t node, unsigned int id_to_ping);
 void random_lookup(node_t node);
 
@@ -22,7 +21,7 @@ unsigned int send_find_node_to_best(node_t node, answer_t node_list);
 
 void handle_task(node_t node, msg_task_t task);
 void handle_find_node(node_t node, task_data_t data);
-void handle_ping(node_t node, task_data_t data); 
+void handle_ping(node_t node, task_data_t data);
 
 
-#endif /* _MSG_EXAMPLES_KADEMLIA_H */
+#endif                          /* _MSG_EXAMPLES_KADEMLIA_H */