aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2020-10-16 09:48:03 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2020-10-16 09:48:03 +0200
commit4bf09d00f1aeb0586f14587dfa455a0a5b902eda (patch)
tree7d40dd74b1303e66f52668d6cc659bd2657232fd /src/include
parentffd4382a73e2fa1d99812df14ed1025fadeb4017 (diff)
downloadgnunet-4bf09d00f1aeb0586f14587dfa455a0a5b902eda.tar.gz
gnunet-4bf09d00f1aeb0586f14587dfa455a0a5b902eda.zip
- fix tvgs; expose alternative identity type
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_gnsrecord_lib.h5
-rw-r--r--src/include/gnunet_identity_service.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/include/gnunet_gnsrecord_lib.h b/src/include/gnunet_gnsrecord_lib.h
index 22e7c0e25..530879b21 100644
--- a/src/include/gnunet_gnsrecord_lib.h
+++ b/src/include/gnunet_gnsrecord_lib.h
@@ -153,6 +153,11 @@ extern "C" {
153 */ 153 */
154#define GNUNET_GNSRECORD_TYPE_RECLAIM_PRESENTATION 65555 154#define GNUNET_GNSRECORD_TYPE_RECLAIM_PRESENTATION 65555
155 155
156/**
157 * Record type for EDKEY delegations.
158 */
159#define GNUNET_GNSRECORD_TYPE_EDKEY GNUNET_IDENTITY_TYPE_EDDSA
160
156 161
157/** 162/**
158 * Flags that can be set for a record. 163 * Flags that can be set for a record.
diff --git a/src/include/gnunet_identity_service.h b/src/include/gnunet_identity_service.h
index 3352d9bc0..17714fec4 100644
--- a/src/include/gnunet_identity_service.h
+++ b/src/include/gnunet_identity_service.h
@@ -69,7 +69,7 @@ enum GNUNET_IDENTITY_KeyType
69 * EDDSA identity. The value is the same as the EDKEY 69 * EDDSA identity. The value is the same as the EDKEY
70 * record type. 70 * record type.
71 */ 71 */
72 GNUNET_IDENTITY_TYPE_EDDSA = 65599 // FIXME 72 GNUNET_IDENTITY_TYPE_EDDSA = 65556
73}; 73};
74 74
75/** 75/**