aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_protocols.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_protocols.h')
-rw-r--r--src/include/gnunet_protocols.h57
1 files changed, 56 insertions, 1 deletions
diff --git a/src/include/gnunet_protocols.h b/src/include/gnunet_protocols.h
index 03b13fd48..898ad6258 100644
--- a/src/include/gnunet_protocols.h
+++ b/src/include/gnunet_protocols.h
@@ -1352,6 +1352,12 @@ extern "C"
1352 */ 1352 */
1353#define GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP 448 1353#define GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP 448
1354 1354
1355/**
1356 * Service to client: end of list of results
1357 */
1358#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_RESULT_END 449
1359
1360
1355/******************************************************************************* 1361/*******************************************************************************
1356 * LOCKMANAGER message types 1362 * LOCKMANAGER message types
1357 ******************************************************************************/ 1363 ******************************************************************************/
@@ -3005,9 +3011,58 @@ extern "C"
3005#define GNUNET_MESSAGE_TYPE_RPS_CS_DEBUG_STREAM_CANCEL 1135 3011#define GNUNET_MESSAGE_TYPE_RPS_CS_DEBUG_STREAM_CANCEL 1135
3006 3012
3007 3013
3014/*******************************************************
3015 NEW (TNG) Transport service
3016 ******************************************************* */
3017
3018/**
3019 * @brief inform transport to add an address of this peer
3020 */
3021#define GNUNET_MESSAGE_TYPE_TRANSPORT_ADD_ADDRESS 1200
3022
3023/**
3024 * @brief inform transport to delete an address of this peer
3025 */
3026#define GNUNET_MESSAGE_TYPE_TRANSPORT_DEL_ADDRESS 1201
3027
3028/**
3029 * @brief inform transport about an incoming message
3030 */
3031#define GNUNET_MESSAGE_TYPE_TRANSPORT_INCOMING_MSG 1202
3032
3033/**
3034 * @brief transport acknowledges processing an incoming message
3035 */
3036#define GNUNET_MESSAGE_TYPE_TRANSPORT_INCOMING_MSG_ACK 1203
3037
3038/**
3039 * @brief inform transport that a queue was setup to talk to some peer
3040 */
3041#define GNUNET_MESSAGE_TYPE_TRANSPORT_QUEUE_SETUP 1204
3042
3043/**
3044 * @brief inform transport that a queue was torn down
3045 */
3046#define GNUNET_MESSAGE_TYPE_TRANSPORT_QUEUE_TEARDOWN 1205
3047
3048/**
3049 * @brief transport tells communicator it wants a queue
3050 */
3051#define GNUNET_MESSAGE_TYPE_TRANSPORT_QUEUE_CREATE 1206
3052
3053/**
3054 * @brief transport tells communicator it wants to transmit
3055 */
3056#define GNUNET_MESSAGE_TYPE_TRANSPORT_SEND_MSG 1207
3057
3058/**
3059 * @brief communicator tells transports that message was sent
3060 */
3061#define GNUNET_MESSAGE_TYPE_TRANSPORT_SEND_MSG_ACK 1208
3062
3008 3063
3009/** 3064/**
3010 * Next available: 1200 3065 * Next available: 1300
3011 */ 3066 */
3012 3067
3013 3068