Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
e1fedb717d42fd008087c239cc3febb60e9c824e
[simgrid.git] / examples / s4u / dht-kademlia / s4u-dht-kademlia.hpp
1 /* Copyright (c) 2012-2019. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef _S4U_KADEMLIA_HPP
8 #define _S4U_KADEMLIA_HPP
9 #include <algorithm>
10 #include <simgrid/s4u.hpp>
11
12 namespace kademlia {
13 class Answer;
14 class Message;
15 }
16
17 #define max_join_trials 4
18
19 #define RECEIVE_TIMEOUT 1
20
21 #define find_node_timeout 10
22 #define find_node_global_timeout 50
23
24 #define kademlia_alpha 3
25 #define BUCKET_SIZE 20
26
27 #define identifier_size 32
28 #define max_answers_to_ask 20
29
30 #define random_lookup_interval 100
31
32 #define MAX_STEPS 10
33
34 #define JOIN_BUCKETS_QUERIES 5
35
36 #define RANDOM_LOOKUP_NODE 0
37
38 #endif