aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_rest_lib.h
diff options
context:
space:
mode:
authorSchanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de>2018-01-08 10:49:06 +0100
committerSchanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de>2018-01-08 10:49:06 +0100
commitf2d31fb82a314dcf6819dd494ff4a11e4f871c4e (patch)
tree029043b01c23f6e780f7fd01c15d467c568664ff /src/include/gnunet_rest_lib.h
parent9f5ea1f7f809d73cbeb7ce5538550c42e978d340 (diff)
parent3f52ce03cb13118bef9a6fbe380f229e2cbec45f (diff)
downloadgnunet-f2d31fb82a314dcf6819dd494ff4a11e4f871c4e.tar.gz
gnunet-f2d31fb82a314dcf6819dd494ff4a11e4f871c4e.zip
Merge remote-tracking branch 'origin/master' into identity_oidc
Diffstat (limited to 'src/include/gnunet_rest_lib.h')
-rw-r--r--src/include/gnunet_rest_lib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_rest_lib.h b/src/include/gnunet_rest_lib.h
index 5bf04636b..41b85401d 100644
--- a/src/include/gnunet_rest_lib.h
+++ b/src/include/gnunet_rest_lib.h
@@ -32,7 +32,7 @@
32#define GNUNET_REST_LIB_H 32#define GNUNET_REST_LIB_H
33 33
34#include "gnunet_util_lib.h" 34#include "gnunet_util_lib.h"
35#include "microhttpd.h" 35#include <microhttpd.h>
36 36
37#define GNUNET_REST_HANDLER_END {NULL, NULL, NULL} 37#define GNUNET_REST_HANDLER_END {NULL, NULL, NULL}
38 38
@@ -113,7 +113,7 @@ typedef void (*GNUNET_REST_ResultProcessor) (void *cls,
113 * 113 *
114 * @param url URL to check 114 * @param url URL to check
115 * @param namespace namespace to check against 115 * @param namespace namespace to check against
116 * @retun GNUNET_YES if namespace matches 116 * @return GNUNET_YES if namespace matches
117 */ 117 */
118int 118int
119GNUNET_REST_namespace_match (const char *url, const char *namespace); 119GNUNET_REST_namespace_match (const char *url, const char *namespace);
@@ -122,7 +122,7 @@ GNUNET_REST_namespace_match (const char *url, const char *namespace);
122 * Create REST MHD response 122 * Create REST MHD response
123 * 123 *
124 * @param data result 124 * @param data result
125 * @retun MHD response 125 * @return MHD response
126 */ 126 */
127 struct MHD_Response* 127 struct MHD_Response*
128GNUNET_REST_create_response (const char *data); 128GNUNET_REST_create_response (const char *data);