aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2013-07-15 07:25:06 +0000
committerGabor X Toth <*@tg-x.net>2013-07-15 07:25:06 +0000
commit542c589521241d21e54b040d159c316cec633830 (patch)
treed46da7a33fec9822c9ed4e887c2c32643a7047e6
parentede63ea813def7cc45f736c18187a772063c6035 (diff)
downloadgnunet-542c589521241d21e54b040d159c316cec633830.tar.gz
gnunet-542c589521241d21e54b040d159c316cec633830.zip
PLACE record type for gns & namestore
-rw-r--r--src/include/gnunet_gns_service.h7
-rw-r--r--src/include/gnunet_namestore_service.h5
2 files changed, 11 insertions, 1 deletions
diff --git a/src/include/gnunet_gns_service.h b/src/include/gnunet_gns_service.h
index cbb9e81c9..34af525c8 100644
--- a/src/include/gnunet_gns_service.h
+++ b/src/include/gnunet_gns_service.h
@@ -141,7 +141,12 @@ enum GNUNET_GNS_RecordType
141 /** 141 /**
142 * Revocation, no data. 142 * Revocation, no data.
143 */ 143 */
144 GNUNET_GNS_RECORD_REV = GNUNET_NAMESTORE_TYPE_REV 144 GNUNET_GNS_RECORD_REV = GNUNET_NAMESTORE_TYPE_REV,
145
146 /**
147 * Social place.
148 */
149 GNUNET_GNS_RECORD_PLACE = GNUNET_NAMESTORE_TYPE_PLACE
145}; 150};
146 151
147 152
diff --git a/src/include/gnunet_namestore_service.h b/src/include/gnunet_namestore_service.h
index 2a89f2be7..700122507 100644
--- a/src/include/gnunet_namestore_service.h
+++ b/src/include/gnunet_namestore_service.h
@@ -72,6 +72,11 @@ extern "C"
72#define GNUNET_NAMESTORE_TYPE_REV 65540 72#define GNUNET_NAMESTORE_TYPE_REV 65540
73 73
74/** 74/**
75 * Record type for a social place.
76 */
77#define GNUNET_NAMESTORE_TYPE_PLACE 65541
78
79/**
75 * Entry in the queue. 80 * Entry in the queue.
76 */ 81 */
77struct GNUNET_NAMESTORE_QueueEntry; 82struct GNUNET_NAMESTORE_QueueEntry;