summaryrefslogtreecommitdiff
path: root/src/gns/gns_api.c
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2012-02-20 14:28:25 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2012-02-20 14:28:25 +0000
commit5fcf9d5393b0416ba91943c38f67cad242242d93 (patch)
tree749e08855263265612d0ac32e8db07e65823f628 /src/gns/gns_api.c
parentfae59dd582474d41063b27c04ee64735ac71e3d3 (diff)
downloadgnunet-5fcf9d5393b0416ba91943c38f67cad242242d93.tar.gz
gnunet-5fcf9d5393b0416ba91943c38f67cad242242d93.zip
namestore stub api added
fixes to namestore api
Diffstat (limited to 'src/gns/gns_api.c')
-rw-r--r--src/gns/gns_api.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gns/gns_api.c b/src/gns/gns_api.c
index cb418c0a6..e31b53ef2 100644
--- a/src/gns/gns_api.c
+++ b/src/gns/gns_api.c
@@ -19,6 +19,8 @@
19*/ 19*/
20 20
21/** 21/**
22 * TODO: Do we really need a client API?
23 *
22 * @file gns/gns_api.c 24 * @file gns/gns_api.c
23 * @brief library to access the GNS service 25 * @brief library to access the GNS service
24 * @author Martin Schanzenbach 26 * @author Martin Schanzenbach
@@ -145,6 +147,8 @@ struct GNUNET_GNS_LookupHandle
145struct GNUNET_GNS_Record 147struct GNUNET_GNS_Record
146{ 148{
147 enum GNUNET_GNS_RecordType type; 149 enum GNUNET_GNS_RecordType type;
150 /* Followed by data array. Format determined by type */
151 char *data;
148}; 152};
149 153
150/** 154/**