aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_protocols.h2
-rw-r--r--src/include/gnunet_secretsharing_service.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_protocols.h b/src/include/gnunet_protocols.h
index 8fc1cd6e6..ea150c52f 100644
--- a/src/include/gnunet_protocols.h
+++ b/src/include/gnunet_protocols.h
@@ -2289,7 +2289,7 @@ extern "C"
2289 * The cryptosystem has been established. 2289 * The cryptosystem has been established.
2290 * Contains the peer's share. 2290 * Contains the peer's share.
2291 */ 2291 */
2292#define GNUNET_MESSAGE_TYPE_SECRETSHARING_CLIENT_ESTABLISHED 783 2292#define GNUNET_MESSAGE_TYPE_SECRETSHARING_CLIENT_SECRET_READY 783
2293 2293
2294 2294
2295 2295
diff --git a/src/include/gnunet_secretsharing_service.h b/src/include/gnunet_secretsharing_service.h
index 7752bb2d2..4479f0d80 100644
--- a/src/include/gnunet_secretsharing_service.h
+++ b/src/include/gnunet_secretsharing_service.h
@@ -119,7 +119,7 @@ struct GNUNET_SECRETSHARING_Message
119 */ 119 */
120typedef void (*GNUNET_SECRETSHARING_SecretReadyCallback) (void *cls, 120typedef void (*GNUNET_SECRETSHARING_SecretReadyCallback) (void *cls,
121 const struct GNUNET_SECRETSHARING_Share *my_share, 121 const struct GNUNET_SECRETSHARING_Share *my_share,
122 const struct GNUNET_SECRETSHARING_PublicKey public_key, 122 const struct GNUNET_SECRETSHARING_PublicKey *public_key,
123 unsigned int num_ready_peers, 123 unsigned int num_ready_peers,
124 const struct GNUNET_PeerIdentity *ready_peers); 124 const struct GNUNET_PeerIdentity *ready_peers);
125 125
@@ -157,7 +157,7 @@ GNUNET_SECRETSHARING_create_session (const struct GNUNET_CONFIGURATION_Handle *c
157 const struct GNUNET_HashCode *session_id, 157 const struct GNUNET_HashCode *session_id,
158 struct GNUNET_TIME_Absolute deadline, 158 struct GNUNET_TIME_Absolute deadline,
159 unsigned int threshold, 159 unsigned int threshold,
160 GNUNET_SECRETSHARING_SecretReadyCallback *cb, 160 GNUNET_SECRETSHARING_SecretReadyCallback cb,
161 void *cls); 161 void *cls);
162 162
163 163