Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill unused constants.
[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 find_node_timeout 10
18 #define find_node_global_timeout 50
19
20 #define kademlia_alpha 3
21 #define BUCKET_SIZE 20
22
23 #define identifier_size 32
24
25 #define random_lookup_interval 100
26
27 #define MAX_STEPS 10
28
29 #define JOIN_BUCKETS_QUERIES 5
30
31 #define RANDOM_LOOKUP_NODE 0
32
33 #endif