aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_protocols.h
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2013-12-03 20:42:42 +0000
committerFlorian Dold <florian.dold@gmail.com>2013-12-03 20:42:42 +0000
commitd477e4cd61a6e3cf3200dd7fe811b7107a460336 (patch)
tree8450ea8345ca947b9b0d49de4c0682cec0a73ebf /src/include/gnunet_protocols.h
parent6d5f6cb60317c093517578fbee25fae3663848d4 (diff)
downloadgnunet-d477e4cd61a6e3cf3200dd7fe811b7107a460336.tar.gz
gnunet-d477e4cd61a6e3cf3200dd7fe811b7107a460336.zip
- missing message type
Diffstat (limited to 'src/include/gnunet_protocols.h')
-rw-r--r--src/include/gnunet_protocols.h32
1 files changed, 31 insertions, 1 deletions
diff --git a/src/include/gnunet_protocols.h b/src/include/gnunet_protocols.h
index 711849919..2cd2aecba 100644
--- a/src/include/gnunet_protocols.h
+++ b/src/include/gnunet_protocols.h
@@ -2259,11 +2259,41 @@ extern "C"
2259#define GNUNET_MESSAGE_TYPE_MULTICAST_REPLAY_REQUEST_CANCEL 2259#define GNUNET_MESSAGE_TYPE_MULTICAST_REPLAY_REQUEST_CANCEL
2260 2260
2261 2261
2262
2263/*******************************************************************************
2264 * SECRETSHARING message types
2265 ******************************************************************************/
2266
2267
2268/**
2269 * Establish a new session.
2270 */
2271#define GNUNET_MESSAGE_TYPE_SECRETSHARING_CLIENT_GENERATE 780
2272
2273/**
2274 * Request the decryption of a ciphertext.
2275 */
2276#define GNUNET_MESSAGE_TYPE_SECRETSHARING_CLIENT_DECRYPT 781
2277
2278/**
2279 * The service succeeded in decrypting a ciphertext.
2280 */
2281#define GNUNET_MESSAGE_TYPE_SECRETSHARING_CLIENT_DECRYPT_DONE 782
2282
2283/**
2284 * The cryptosystem has been established.
2285 * Contains the peer's share.
2286 */
2287#define GNUNET_MESSAGE_TYPE_SECRETSHARING_CLIENT_ESTABLISHED 783
2288
2289
2290
2262/** 2291/**
2263 * Next available: 780 2292 * Next available: 800
2264 */ 2293 */
2265 2294
2266 2295
2296
2267/******************************************************************************* 2297/*******************************************************************************
2268 * PSYC message types 2298 * PSYC message types
2269 ******************************************************************************/ 2299 ******************************************************************************/