aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2015-01-18 23:16:15 +0000
committerJulius Bünger <buenger@mytum.de>2015-01-18 23:16:15 +0000
commit81b7ddce7d96f7538af501fa1da032cceb89d84a (patch)
tree6917302bb133e553d431428e98e2a4cf8700af9c /src/include
parent40b9ab5648303db3af346bafa1bc26e7605a20ff (diff)
downloadgnunet-81b7ddce7d96f7538af501fa1da032cceb89d84a.tar.gz
gnunet-81b7ddce7d96f7538af501fa1da032cceb89d84a.zip
check if peer we open a channel to is live
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_protocols.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/include/gnunet_protocols.h b/src/include/gnunet_protocols.h
index 6a77ca589..fad279405 100644
--- a/src/include/gnunet_protocols.h
+++ b/src/include/gnunet_protocols.h
@@ -2664,6 +2664,15 @@ extern "C"
2664 */ 2664 */
2665#define GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REPLY 952 2665#define GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REPLY 952
2666 2666
2667/**
2668 * RPS Hello message. Sent directly after other peer established connection to
2669 * the first peer indicating that it is online and communication over this
2670 * channel is now possible.
2671 *
2672 * This might contain a pow over the sender id
2673 */
2674#define GNUNET_MESSAGE_TYPE_RPS_PP_HELLO 953
2675
2667 2676
2668 2677
2669/* Client-Service Messages */ 2678/* Client-Service Messages */
@@ -2671,17 +2680,17 @@ extern "C"
2671/** 2680/**
2672 * RPS CS REQUEST Message for the Client to request (a) random peer(s) 2681 * RPS CS REQUEST Message for the Client to request (a) random peer(s)
2673 */ 2682 */
2674#define GNUNET_MESSAGE_TYPE_RPS_CS_REQUEST 953 2683#define GNUNET_MESSAGE_TYPE_RPS_CS_REQUEST 954
2675 2684
2676/** 2685/**
2677 * RPS CS REPLY Message for the Server to send (a) random peer(s) 2686 * RPS CS REPLY Message for the Server to send (a) random peer(s)
2678 */ 2687 */
2679#define GNUNET_MESSAGE_TYPE_RPS_CS_REPLY 954 2688#define GNUNET_MESSAGE_TYPE_RPS_CS_REPLY 955
2680 2689
2681/** 2690/**
2682 * RPS CS SEED Message for the Client to seed peers into rps 2691 * RPS CS SEED Message for the Client to seed peers into rps
2683 */ 2692 */
2684#define GNUNET_MESSAGE_TYPE_RPS_CS_SEED 955 2693#define GNUNET_MESSAGE_TYPE_RPS_CS_SEED 956
2685 2694
2686 2695
2687/*******************************************************************************/ 2696/*******************************************************************************/