aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2020-10-15 16:31:00 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2020-10-15 16:31:00 +0200
commitde73691b4fdd80c43830e2f9dfa9ef804708ee51 (patch)
tree201373a384862e26e49e94f5c6b05fcf0ceba5a3
parentcd62a70a886f17eb363932f974fc1f4b102cef5d (diff)
downloadgnunet-de73691b4fdd80c43830e2f9dfa9ef804708ee51.tar.gz
gnunet-de73691b4fdd80c43830e2f9dfa9ef804708ee51.zip
-forgot header
-rw-r--r--src/include/gnunet_gnsrecord_json_lib.h73
1 files changed, 73 insertions, 0 deletions
diff --git a/src/include/gnunet_gnsrecord_json_lib.h b/src/include/gnunet_gnsrecord_json_lib.h
new file mode 100644
index 000000000..966461705
--- /dev/null
+++ b/src/include/gnunet_gnsrecord_json_lib.h
@@ -0,0 +1,73 @@
1/*
2 This file is part of GNUnet
3 Copyright (C) 2012, 2013 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 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20
21/**
22 * @author Martin Schanzenbach
23 *
24 * @file
25 * API that can be used to manipulate JSON GNS record data
26 *
27 * @defgroup gnsrecord GNS Record library
28 * Manipulate GNS record data
29 *
30 * @see [Documentation](https://gnunet.org/gns-plugins)
31 *
32 * @{
33 */
34#ifndef GNUNET_GNSRECORD_JSON_LIB_H
35#define GNUNET_GNSRECORD_JSON_LIB_H
36
37#include "gnunet_gnsrecord_lib.h"
38#include "gnunet_json_lib.h"
39
40#ifdef __cplusplus
41extern "C" {
42#if 0 /* keep Emacsens' auto-indent happy */
43}
44#endif
45#endif
46
47
48/**
49 * JSON Specification for GNS Records.
50 *
51 * @param gnsrecord_object struct of GNUNET_GNSRECORD_Data to fill
52 * @return JSON Specification
53 */
54struct GNUNET_JSON_Specification
55GNUNET_GNSRECORD_JSON_spec_gnsrecord (struct GNUNET_GNSRECORD_Data **rd,
56 unsigned int *rd_count,
57 char **name);
58
59
60/**
61 * Convert GNS record to JSON.
62 *
63 * @param rname name of record
64 * @param rd record data
65 * @return corresponding JSON encoding
66 */
67json_t *
68GNUNET_GNSRECORD_JSON_from_gnsrecord (const char*rname,
69 const struct GNUNET_GNSRECORD_Data *rd,
70 unsigned int rd_count);
71
72
73#endif