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.h51
1 files changed, 50 insertions, 1 deletions
diff --git a/src/include/gnunet_protocols.h b/src/include/gnunet_protocols.h
index 03b13fd48..4831c9215 100644
--- a/src/include/gnunet_protocols.h
+++ b/src/include/gnunet_protocols.h
@@ -3005,9 +3005,58 @@ extern "C"
3005#define GNUNET_MESSAGE_TYPE_RPS_CS_DEBUG_STREAM_CANCEL 1135 3005#define GNUNET_MESSAGE_TYPE_RPS_CS_DEBUG_STREAM_CANCEL 1135
3006 3006
3007 3007
3008/*******************************************************
3009 NEW (TNG) Transport service
3010 ******************************************************* */
3008 3011
3009/** 3012/**
3010 * Next available: 1200 3013 * @brief inform transport to add an address of this peer
3014 */
3015#define GNUNET_MESSAGE_TYPE_TRANSPORT_ADD_ADDRESS 1200
3016
3017/**
3018 * @brief inform transport to delete an address of this peer
3019 */
3020#define GNUNET_MESSAGE_TYPE_TRANSPORT_DEL_ADDRESS 1201
3021
3022/**
3023 * @brief inform transport about an incoming message
3024 */
3025#define GNUNET_MESSAGE_TYPE_TRANSPORT_INCOMING_MSG 1202
3026
3027/**
3028 * @brief transport acknowledges processing an incoming message
3029 */
3030#define GNUNET_MESSAGE_TYPE_TRANSPORT_INCOMING_MSG_ACK 1203
3031
3032/**
3033 * @brief inform transport that a queue was setup to talk to some peer
3034 */
3035#define GNUNET_MESSAGE_TYPE_TRANSPORT_QUEUE_SETUP 1204
3036
3037/**
3038 * @brief inform transport that a queue was torn down
3039 */
3040#define GNUNET_MESSAGE_TYPE_TRANSPORT_QUEUE_TEARDOWN 1205
3041
3042/**
3043 * @brief transport tells communicator it wants a queue
3044 */
3045#define GNUNET_MESSAGE_TYPE_TRANSPORT_QUEUE_CREATE 1206
3046
3047/**
3048 * @brief transport tells communicator it wants to transmit
3049 */
3050#define GNUNET_MESSAGE_TYPE_TRANSPORT_SEND_MSG 1207
3051
3052/**
3053 * @brief communicator tells transports that message was sent
3054 */
3055#define GNUNET_MESSAGE_TYPE_TRANSPORT_SEND_MSG_ACK 1208
3056
3057
3058/**
3059 * Next available: 1300
3011 */ 3060 */
3012 3061
3013 3062