091d3ba58d52ec1d750086f206fb9fe2e94da9f5
[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 it
6       under the terms of the GNU Affero General Public License as published
7       by the Free Software Foundation, either version 3 of the License,
8       or (at your 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       Affero General Public License for more details.
14      
15       You should have received a copy of the GNU Affero General Public License
16       along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 /**
20  * @author Christian Grothoff
21  *
22  * @file
23  * Convenience header including all headers of subsystems in the gnunet_util library
24  *
25  * @see [Documentation](https://gnunet.org/libgnuneutil)
26  */
27
28 #ifndef GNUNET_UTIL_LIB_H
29 #define GNUNET_UTIL_LIB_H
30
31 #ifdef __cplusplus
32 extern "C"
33 {
34 #if 0                           /* keep Emacsens' auto-indent happy */
35 }
36 #endif
37 #endif
38
39
40 /**
41  * Largest supported message (to be precise, one byte more
42  * than the largest possible message, so tests involving
43  * this value should check for messages being smaller than
44  * this value).
45  */
46 #define GNUNET_MAX_MESSAGE_SIZE 65536
47
48 /**
49  * Smallest supported message.
50  */
51 #define GNUNET_MIN_MESSAGE_SIZE sizeof (struct GNUNET_MessageHeader)
52
53 /**
54  * NOTE: You MUST adjust this URL to point to the location of a
55  * publicly accessible repository (or TGZ) containing the sources of
56  * THIS release. Otherwise, you are violating the Affero GPL if you make
57  * this service available to anyone but yourself.
58  */
59 #define GNUNET_AGPL_URL "https://gnunet.org/git/gnunet.git#" PACKAGE_VERSION
60
61
62 #include "gnunet_crypto_lib.h"
63 #include "gnunet_bandwidth_lib.h"
64 #include "gnunet_bio_lib.h"
65 #include "gnunet_client_lib.h"
66 #include "gnunet_container_lib.h"
67 #include "gnunet_getopt_lib.h"
68 #include "gnunet_helper_lib.h"
69 #include "gnunet_mst_lib.h"
70 #include "gnunet_mq_lib.h"
71 #include "gnunet_nc_lib.h"
72 #include "gnunet_op_lib.h"
73 #include "gnunet_os_lib.h"
74 #include "gnunet_peer_lib.h"
75 #include "gnunet_plugin_lib.h"
76 #include "gnunet_program_lib.h"
77 #include "gnunet_protocols.h"
78 #include "gnunet_service_lib.h"
79 #include "gnunet_signal_lib.h"
80 #include "gnunet_strings_lib.h"
81 #include "gnunet_tun_lib.h"
82 #include "gnunet_dnsstub_lib.h"
83 #include "gnunet_dnsparser_lib.h"
84
85 #if 0                           /* keep Emacsens' auto-indent happy */
86 {
87 #endif
88 #ifdef __cplusplus
89 }
90 #endif
91
92 #endif