aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-service-gns_resolver.h
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2012-06-19 12:33:07 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2012-06-19 12:33:07 +0000
commit72d6a013072770ba7e2426346f962a8ade446b8c (patch)
tree995c4c5c4210c6fb3fb605bf183353cd6e72512e /src/gns/gnunet-service-gns_resolver.h
parent7774b6353e522384f3da3c2be065223d9447531b (diff)
downloadgnunet-72d6a013072770ba7e2426346f962a8ade446b8c.tar.gz
gnunet-72d6a013072770ba7e2426346f962a8ade446b8c.zip
-add CNAME handling for GNS
Diffstat (limited to 'src/gns/gnunet-service-gns_resolver.h')
-rw-r--r--src/gns/gnunet-service-gns_resolver.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gns/gnunet-service-gns_resolver.h b/src/gns/gnunet-service-gns_resolver.h
index 768451205..0e18f13a6 100644
--- a/src/gns/gnunet-service-gns_resolver.h
+++ b/src/gns/gnunet-service-gns_resolver.h
@@ -90,6 +90,8 @@ typedef void (*ResolutionResultProcessor) (void *cls,
90 * RSL_TIMED_OUT: resolution timed out 90 * RSL_TIMED_OUT: resolution timed out
91 * RSL_DELEGATE_VPN: Found VPN delegation 91 * RSL_DELEGATE_VPN: Found VPN delegation
92 * RSL_DELEGATE_NS: Found NS delegation 92 * RSL_DELEGATE_NS: Found NS delegation
93 * RSL_DELEGATE_PKEY: Found PKEY delegation
94 * RSL_CNAME_FOUND: Found CNAME record
93 */ 95 */
94enum ResolutionStatus 96enum ResolutionStatus
95{ 97{
@@ -97,7 +99,9 @@ enum ResolutionStatus
97 RSL_RECORD_EXPIRED = 2, 99 RSL_RECORD_EXPIRED = 2,
98 RSL_TIMED_OUT = 4, 100 RSL_TIMED_OUT = 4,
99 RSL_DELEGATE_VPN = 8, 101 RSL_DELEGATE_VPN = 8,
100 RSL_DELEGATE_NS = 16 102 RSL_DELEGATE_NS = 16,
103 RSL_DELEGATE_PKEY = 32,
104 RSL_CNAME_FOUND = 64
101}; 105};
102 106
103/** 107/**