stuff
[oweals/gnunet.git] / src / include / gnunet_constants.h
1 /*
2      This file is part of GNUnet.
3      (C) 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file include/gnunet_constants.h
23  * @brief "global" constants for performance tuning
24  * @author Christian Grothoff
25  */
26
27 #ifndef GNUNET_CONSTANTS_H
28 #define GNUNET_CONSTANTS_H
29
30 #ifdef __cplusplus
31 extern "C"
32 {
33 #if 0                           /* keep Emacsens' auto-indent happy */
34 }
35 #endif
36 #endif
37
38 #include "gnunet_bandwidth_lib.h"
39
40 /**
41  * Bandwidth (in/out) to assume initially (before either peer has
42  * communicated any particular preference).  Should be rather low; set
43  * so that at least one maximum-size message can be send roughly once
44  * per minute.
45  */
46 #define GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT GNUNET_BANDWIDTH_value_init (1024)
47
48 /**
49  * After how long do we consider a connection to a peer dead
50  * if we don't receive messages from the peer?
51  */
52 #define GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
53
54 /**
55  * How long do we wait after a FORK+EXEC before testing for the
56  * resulting process to be up (port open, waitpid, etc.)?
57  */
58 #define GNUNET_CONSTANTS_EXEC_WAIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 100)
59
60 /**
61  * After how long do we consider a service irresponsive
62  * even if we assume that the service commonly does not
63  * respond instantly (DNS, Database, etc.).
64  */
65 #define GNUNET_CONSTANTS_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 10)
66
67
68 /**
69  * Until which load do we consider the peer overly idle
70  * (which means that we would like to use more resources).<p>
71  *
72  * Note that we use 70 to leave some room for applications
73  * to consume resources "idly" (i.e. up to 85%) and then
74  * still have some room for "paid for" resource consumption.
75  */
76 #define GNUNET_CONSTANTS_IDLE_LOAD_THRESHOLD 70
77
78
79 #if 0                           /* keep Emacsens' auto-indent happy */
80 {
81 #endif
82 #ifdef __cplusplus
83 }
84 #endif
85
86 #endif