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