aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/conversation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversation/conversation.h')
-rw-r--r--src/conversation/conversation.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/conversation/conversation.h b/src/conversation/conversation.h
index ed614ab1b..d244f5163 100644
--- a/src/conversation/conversation.h
+++ b/src/conversation/conversation.h
@@ -27,6 +27,8 @@
27#ifndef CONVERSATION_H 27#ifndef CONVERSATION_H
28#define CONVERSATION_H 28#define CONVERSATION_H
29 29
30#include "gnunet_identity_service.h"
31
30#ifdef __cplusplus 32#ifdef __cplusplus
31extern "C" 33extern "C"
32{ 34{
@@ -105,7 +107,7 @@ struct ClientPhoneRingMessage
105 /** 107 /**
106 * Who is calling us? 108 * Who is calling us?
107 */ 109 */
108 struct GNUNET_CRYPTO_EcdsaPublicKey caller_id; 110 struct GNUNET_IDENTITY_PublicKey caller_id;
109}; 111};
110 112
111 113
@@ -230,7 +232,7 @@ struct ClientCallMessage
230 /** 232 /**
231 * Identity of the caller. 233 * Identity of the caller.
232 */ 234 */
233 struct GNUNET_CRYPTO_EcdsaPrivateKey caller_id; 235 struct GNUNET_IDENTITY_PrivateKey caller_id;
234}; 236};
235 237
236 238
@@ -301,7 +303,7 @@ struct CadetPhoneRingMessage
301 /** 303 /**
302 * Who is calling us? (also who is signing). 304 * Who is calling us? (also who is signing).
303 */ 305 */
304 struct GNUNET_CRYPTO_EcdsaPublicKey caller_id; 306 struct GNUNET_IDENTITY_PublicKey caller_id;
305 307
306 /** 308 /**
307 * When does the signature expire? 309 * When does the signature expire?
@@ -311,7 +313,7 @@ struct CadetPhoneRingMessage
311 /** 313 /**
312 * Signature over a `struct CadetPhoneRingInfoPS` 314 * Signature over a `struct CadetPhoneRingInfoPS`
313 */ 315 */
314 struct GNUNET_CRYPTO_EcdsaSignature signature; 316 struct GNUNET_IDENTITY_Signature signature;
315}; 317};
316 318
317 319