Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Spell check.
[simgrid.git] / examples / deprecated / msg / dht-kademlia / answer.h
index 93b748a..e67bd62 100644 (file)
@@ -9,7 +9,7 @@
 #include <xbt/dynar.h>
 #include "routing_table.h"
 
-/* Node query anwser. contains the elements closest to the id given. */
+/* Node query answer. contains the elements closest to the id given. */
 typedef struct s_node_answer {
   unsigned int destination_id;
   xbt_dynar_t nodes;            //Dynar of node_contact_t
@@ -18,8 +18,6 @@ typedef struct s_node_answer {
 
 typedef s_answer_t *answer_t;
 
-#include "node.h"
-
 answer_t answer_init(unsigned int destination_id);
 void answer_free(answer_t answer);
 void answer_print(answer_t answer);