aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_namestore_service.h
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2012-03-28 09:32:20 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2012-03-28 09:32:20 +0000
commitc6207ae14cf9ff6a428f1c6d962eb5f8a6b9f6a8 (patch)
tree030b41c0aa801630e0bac03cc9e9ae6bf936ba28 /src/include/gnunet_namestore_service.h
parent6021dbe41c2f5ec53ff164028fa68fb50dc38023 (diff)
downloadgnunet-c6207ae14cf9ff6a428f1c6d962eb5f8a6b9f6a8.tar.gz
gnunet-c6207ae14cf9ff6a428f1c6d962eb5f8a6b9f6a8.zip
-add record type any, pending flag
Diffstat (limited to 'src/include/gnunet_namestore_service.h')
-rw-r--r--src/include/gnunet_namestore_service.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/include/gnunet_namestore_service.h b/src/include/gnunet_namestore_service.h
index e66062772..232702592 100644
--- a/src/include/gnunet_namestore_service.h
+++ b/src/include/gnunet_namestore_service.h
@@ -43,6 +43,10 @@ extern "C"
43#endif 43#endif
44#endif 44#endif
45 45
46/**
47 * Record type indicating any record/'*'
48 */
49#define GNUNET_NAMESTORE_TYPE_ANY 0
46 50
47/** 51/**
48 * Record type for GNS zone transfer ("PKEY"). 52 * Record type for GNS zone transfer ("PKEY").
@@ -139,7 +143,13 @@ enum GNUNET_NAMESTORE_RecordFlags
139 * This is a private record of this peer and it should 143 * This is a private record of this peer and it should
140 * thus not be handed out to other peers. 144 * thus not be handed out to other peers.
141 */ 145 */
142 GNUNET_NAMESTORE_RF_PRIVATE = 2 146 GNUNET_NAMESTORE_RF_PRIVATE = 2,
147
148 /**
149 * This record was added by the system
150 * and is pending user confimation
151 */
152 GNUNET_NAMESTORE_RF_PENDING = 4
143 153
144}; 154};
145 155