aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_conversation_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-06-06 08:43:16 +0000
committerChristian Grothoff <christian@grothoff.org>2014-06-06 08:43:16 +0000
commitaece72e29b041e2dfbc5b49d2fd0d49f8ab2124e (patch)
treecce216b507c99bf6723e15da5158e68a57a55f41 /src/include/gnunet_conversation_service.h
parent310f312557954662ffc32f74bbacdb63d76ede3d (diff)
downloadgnunet-aece72e29b041e2dfbc5b49d2fd0d49f8ab2124e.tar.gz
gnunet-aece72e29b041e2dfbc5b49d2fd0d49f8ab2124e.zip
addressing #3431
Diffstat (limited to 'src/include/gnunet_conversation_service.h')
-rw-r--r--src/include/gnunet_conversation_service.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_conversation_service.h b/src/include/gnunet_conversation_service.h
index e8f941e45..0f52db1df 100644
--- a/src/include/gnunet_conversation_service.h
+++ b/src/include/gnunet_conversation_service.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet 2 This file is part of GNUnet
3 (C) 2013 Christian Grothoff (and other contributing authors) 3 (C) 2013, 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
@@ -131,13 +131,13 @@ enum GNUNET_CONVERSATION_PhoneEventCode
131 * @param cls closure 131 * @param cls closure
132 * @param code type of the event 132 * @param code type of the event
133 * @param caller handle for the caller 133 * @param caller handle for the caller
134 * @param caller_id name of the caller in GNS 134 * @param caller_id public key of the caller (in GNS)
135 */ 135 */
136typedef void 136typedef void
137(*GNUNET_CONVERSATION_PhoneEventHandler)(void *cls, 137(*GNUNET_CONVERSATION_PhoneEventHandler)(void *cls,
138 enum GNUNET_CONVERSATION_PhoneEventCode code, 138 enum GNUNET_CONVERSATION_PhoneEventCode code,
139 struct GNUNET_CONVERSATION_Caller *caller, 139 struct GNUNET_CONVERSATION_Caller *caller,
140 const char *caller_id); 140 const struct GNUNET_CRYPTO_EcdsaPublicKey *caller_id);
141 141
142 142
143/** 143/**