aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_rest_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_rest_lib.h')
-rw-r--r--src/include/gnunet_rest_lib.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/include/gnunet_rest_lib.h b/src/include/gnunet_rest_lib.h
index a449d7dee..a1274dbfd 100644
--- a/src/include/gnunet_rest_lib.h
+++ b/src/include/gnunet_rest_lib.h
@@ -19,9 +19,14 @@
19 */ 19 */
20 20
21/** 21/**
22 * @file include/gnunet_rest_lib.h
23 * @brief API for helper library to parse/create REST
24 * @author Martin Schanzenbach 22 * @author Martin Schanzenbach
23 *
24 * @file
25 * API for helper library to parse/create REST
26 *
27 * @defgroup rest REST library
28 * Helper library to parse/create REST
29 * @{
25 */ 30 */
26#ifndef GNUNET_REST_LIB_H 31#ifndef GNUNET_REST_LIB_H
27#define GNUNET_REST_LIB_H 32#define GNUNET_REST_LIB_H
@@ -159,7 +164,7 @@ int
159GNUNET_REST_jsonapi_resource_check_type (const struct JsonApiResource *resource, 164GNUNET_REST_jsonapi_resource_check_type (const struct JsonApiResource *resource,
160 const char* type); 165 const char* type);
161 166
162 167
163/** 168/**
164 * Create a JSON API primary data 169 * Create a JSON API primary data
165 * 170 *
@@ -180,7 +185,7 @@ GNUNET_REST_jsonapi_object_new ();
180struct JsonApiObject* 185struct JsonApiObject*
181GNUNET_REST_jsonapi_object_parse (const char* data); 186GNUNET_REST_jsonapi_object_parse (const char* data);
182 187
183 188
184/** 189/**
185 * Delete a JSON API primary data 190 * Delete a JSON API primary data
186 * 191 *
@@ -268,4 +273,7 @@ GNUNET_REST_handle_request (struct RestConnectionDataHandle *conn,
268 const struct GNUNET_REST_RestConnectionHandler *handlers, 273 const struct GNUNET_REST_RestConnectionHandler *handlers,
269 void *cls); 274 void *cls);
270 275
276
271#endif 277#endif
278
279/** @} */ /* end of group */