aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-07-26 20:30:28 +0200
committerFlorian Dold <florian@dold.me>2021-07-26 20:30:28 +0200
commit28dfb1220bd257ba29fc2ae786c6952cc086c561 (patch)
treeff475f9f88fde4ebdcd7e57f3bdb694956aad621 /src/include
parent51e5fab47cb0e9c45600fca44eecd80f8087c8f8 (diff)
downloadgnunet-28dfb1220bd257ba29fc2ae786c6952cc086c561.tar.gz
gnunet-28dfb1220bd257ba29fc2ae786c6952cc086c561.zip
config: resolve realpath of parent config file, fix docs
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_configuration_lib.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/include/gnunet_configuration_lib.h b/src/include/gnunet_configuration_lib.h
index 21a5ab810..68ed570a3 100644
--- a/src/include/gnunet_configuration_lib.h
+++ b/src/include/gnunet_configuration_lib.h
@@ -144,16 +144,15 @@ GNUNET_CONFIGURATION_serialize (const struct GNUNET_CONFIGURATION_Handle *cfg,
144 * @param cfg configuration to update 144 * @param cfg configuration to update
145 * @param mem the memory block of serialized configuration 145 * @param mem the memory block of serialized configuration
146 * @param size the size of the memory block 146 * @param size the size of the memory block
147 * @param allow_inline set to the base directory if we recursively load configuration 147 * @param source_filename source filename, will be used
148 * from inlined configurations; NULL if not and raise warnings 148 * to resolve relative @INLINE@ statements
149 * when we come across them
150 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error 149 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
151 */ 150 */
152enum GNUNET_GenericReturnValue 151enum GNUNET_GenericReturnValue
153GNUNET_CONFIGURATION_deserialize (struct GNUNET_CONFIGURATION_Handle *cfg, 152GNUNET_CONFIGURATION_deserialize (struct GNUNET_CONFIGURATION_Handle *cfg,
154 const char *mem, 153 const char *mem,
155 size_t size, 154 size_t size,
156 const char *basedir); 155 const char *source_filename);
157 156
158 157
159/** 158/**