Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / examples / msg / dht-kademlia / common.h
1 /* Copyright (c) 2012, 2014. 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 #define max_join_trials 4
10
11 #define RECEIVE_TIMEOUT 1
12
13 #define ping_timeout 55
14 #define find_node_timeout 10
15 #define find_node_global_timeout 50
16
17 #define kademlia_alpha 3
18 #define bucket_size 20
19
20 #define identifier_size 32
21 #define max_answers_to_ask 20
22
23 #define random_lookup_interval 100
24
25 #define MAILBOX_NAME_SIZE (identifier_size / 4) /* hex encoded */
26
27 #define COMM_SIZE 1
28 #define COMP_SIZE 0
29
30 #define MAX_STEPS 10
31
32 #define JOIN_BUCKETS_QUERIES 5
33
34 #define RANDOM_LOOKUP_NODE 0
35
36
37 #endif                          /* _KADEMLIA_EXAMPLES_COMMON */