aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-service-gns_resolver.h
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2012-06-19 18:41:47 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2012-06-19 18:41:47 +0000
commit313d7741e03f767652a61265d1bfc8e2186ef98a (patch)
tree8f367f94bfecae1ab670dba3426679922c2d399b /src/gns/gnunet-service-gns_resolver.h
parent7df93ad48942b6376fd64ad86958eabe9c43d341 (diff)
downloadgnunet-313d7741e03f767652a61265d1bfc8e2186ef98a.tar.gz
gnunet-313d7741e03f767652a61265d1bfc8e2186ef98a.zip
-zone revocation
Diffstat (limited to 'src/gns/gnunet-service-gns_resolver.h')
-rw-r--r--src/gns/gnunet-service-gns_resolver.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gns/gnunet-service-gns_resolver.h b/src/gns/gnunet-service-gns_resolver.h
index 0e18f13a6..b93e6acec 100644
--- a/src/gns/gnunet-service-gns_resolver.h
+++ b/src/gns/gnunet-service-gns_resolver.h
@@ -92,6 +92,7 @@ typedef void (*ResolutionResultProcessor) (void *cls,
92 * RSL_DELEGATE_NS: Found NS delegation 92 * RSL_DELEGATE_NS: Found NS delegation
93 * RSL_DELEGATE_PKEY: Found PKEY delegation 93 * RSL_DELEGATE_PKEY: Found PKEY delegation
94 * RSL_CNAME_FOUND: Found CNAME record 94 * RSL_CNAME_FOUND: Found CNAME record
95 * RSL_PKEY_REVOKED: Found PKEY has been revoked
95 */ 96 */
96enum ResolutionStatus 97enum ResolutionStatus
97{ 98{
@@ -101,7 +102,8 @@ enum ResolutionStatus
101 RSL_DELEGATE_VPN = 8, 102 RSL_DELEGATE_VPN = 8,
102 RSL_DELEGATE_NS = 16, 103 RSL_DELEGATE_NS = 16,
103 RSL_DELEGATE_PKEY = 32, 104 RSL_DELEGATE_PKEY = 32,
104 RSL_CNAME_FOUND = 64 105 RSL_CNAME_FOUND = 64,
106 RSL_PKEY_REVOKED = 128
105}; 107};
106 108
107/** 109/**