Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / examples / deprecated / msg / dht-kademlia / common.h
1 /* Copyright (c) 2012-2020. 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 _KADEMLIA_EXAMPLES_COMMON
8 #define _KADEMLIA_EXAMPLES_COMMON
9
10 #define MAX_JOIN_TRIALS 4
11
12 #define FIND_NODE_TIMEOUT 10
13 #define FIND_NODE_GLOBAL_TIMEOUT 50
14
15 #define KADEMLIA_ALPHA 3
16 #define BUCKET_SIZE 20
17
18 #define IDENTIFIER_SIZE 32
19
20 #define RANDOM_LOOKUP_INTERVAL 100
21
22 #define MAILBOX_NAME_SIZE 16 /* (identifier_size / 4)  (hex encoded) */
23
24 #define COMM_SIZE 1
25 #define COMP_SIZE 0
26
27 #define MAX_STEPS 10
28
29 #define JOIN_BUCKETS_QUERIES 5
30
31 #define RANDOM_LOOKUP_NODE 0
32
33
34 #endif                          /* _KADEMLIA_EXAMPLES_COMMON */