aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_constants.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-06-10 05:57:55 +0000
committerChristian Grothoff <christian@grothoff.org>2009-06-10 05:57:55 +0000
commitd5e4648c1a755af9d9b47d446e750d228ce66f99 (patch)
tree562a0b5f17ede06d961b113e951eef16d790c2bd /src/include/gnunet_constants.h
parent18bd5e0a920729f0baf414311130e0a92e775bbb (diff)
downloadgnunet-d5e4648c1a755af9d9b47d446e750d228ce66f99.tar.gz
gnunet-d5e4648c1a755af9d9b47d446e750d228ce66f99.zip
timeout code
Diffstat (limited to 'src/include/gnunet_constants.h')
-rw-r--r--src/include/gnunet_constants.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/include/gnunet_constants.h b/src/include/gnunet_constants.h
new file mode 100644
index 000000000..99ed77537
--- /dev/null
+++ b/src/include/gnunet_constants.h
@@ -0,0 +1,60 @@
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
31extern "C"
32{
33#if 0 /* keep Emacsens' auto-indent happy */
34}
35#endif
36#endif
37
38/**
39 * Amount of bytes per minute (in/out) to assume initially (before
40 * either peer has communicated any particular preference). Should be
41 * rather low; set so that at least one maximum-size message can be
42 * send each minute.
43 */
44#define GNUNET_CONSTANTS_DEFAULT_BPM_IN_OUT GNUNET_SERVER_MAX_MESSAGE_SIZE
45
46/**
47 * After how long do we consider a connection to a peer dead
48 * if we don't receive messages from the peer?
49 */
50#define GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
51
52
53#if 0 /* keep Emacsens' auto-indent happy */
54{
55#endif
56#ifdef __cplusplus
57}
58#endif
59
60#endif