-fix
[oweals/gnunet.git] / src / include / gnunet_util_lib.h
1 /*
2       This file is part of GNUnet
3       Copyright (C) 2009 GNUnet e.V.
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 3, 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., 51 Franklin Street, Fifth Floor,
18       Boston, MA 02110-1301, USA.
19  */
20
21 /**
22  * @author Christian Grothoff
23  *
24  * @file
25  * Convenience header including all headers of subsystems in the gnunet_util library
26  *
27  * @see [Documentation](https://gnunet.org/libgnuneutil)
28  */
29
30 #ifndef GNUNET_UTIL_LIB_H
31 #define GNUNET_UTIL_LIB_H
32
33 #ifdef __cplusplus
34 extern "C"
35 {
36 #if 0                           /* keep Emacsens' auto-indent happy */
37 }
38 #endif
39 #endif
40
41
42 /**
43  * Largest supported message (to be precise, one byte more
44  * than the largest possible message, so tests involving
45  * this value should check for messages being smaller than
46  * this value).
47  */
48 #define GNUNET_MAX_MESSAGE_SIZE 65536
49
50 /**
51  * Smallest supported message.
52  */
53 #define GNUNET_MIN_MESSAGE_SIZE sizeof (struct GNUNET_MessageHeader)
54
55
56 #include "gnunet_crypto_lib.h"
57 #include "gnunet_bandwidth_lib.h"
58 #include "gnunet_bio_lib.h"
59 #include "gnunet_client_lib.h"
60 #include "gnunet_container_lib.h"
61 #include "gnunet_getopt_lib.h"
62 #include "gnunet_helper_lib.h"
63 #include "gnunet_mst_lib.h"
64 #include "gnunet_mq_lib.h"
65 #include "gnunet_nc_lib.h"
66 #include "gnunet_op_lib.h"
67 #include "gnunet_os_lib.h"
68 #include "gnunet_peer_lib.h"
69 #include "gnunet_plugin_lib.h"
70 #include "gnunet_program_lib.h"
71 #include "gnunet_protocols.h"
72 #include "gnunet_service_lib.h"
73 #include "gnunet_signal_lib.h"
74 #include "gnunet_strings_lib.h"
75
76 #if 0                           /* keep Emacsens' auto-indent happy */
77 {
78 #endif
79 #ifdef __cplusplus
80 }
81 #endif
82
83 #endif