Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / examples / cpp / dht-kademlia / s4u-dht-kademlia.hpp
1 /* Copyright (c) 2012-2022. 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 } // namespace kademlia
16
17 constexpr double FIND_NODE_TIMEOUT        = 10.0;
18 constexpr double FIND_NODE_GLOBAL_TIMEOUT = 50.0;
19
20 constexpr unsigned KADEMLIA_ALPHA = 3;
21 constexpr unsigned BUCKET_SIZE    = 20;
22
23 constexpr int IDENTIFIER_SIZE = 32;
24
25 constexpr double RANDOM_LOOKUP_INTERVAL = 100.0;
26
27 constexpr unsigned MAX_STEPS = 10;
28
29 constexpr unsigned JOIN_BUCKETS_QUERIES = 5;
30
31 constexpr unsigned RANDOM_LOOKUP_NODE = 0;
32
33 #endif