aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-04-29 15:16:04 +0000
committerChristian Grothoff <christian@grothoff.org>2015-04-29 15:16:04 +0000
commit0b48745c1c6ec80a8e99bcdb9514e028b8656fe0 (patch)
tree6d25cad8fc17af082b1481a48b8d4643a75fdc51 /src/include
parentd97cb7e3039c0c3d560a1e43761afe9a3b0d1cb6 (diff)
downloadgnunet-0b48745c1c6ec80a8e99bcdb9514e028b8656fe0.tar.gz
gnunet-0b48745c1c6ec80a8e99bcdb9514e028b8656fe0.zip
-major wdht hacking / refactoring -- still not finished
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_protocols.h30
1 files changed, 13 insertions, 17 deletions
diff --git a/src/include/gnunet_protocols.h b/src/include/gnunet_protocols.h
index 9da97cde4..000447a70 100644
--- a/src/include/gnunet_protocols.h
+++ b/src/include/gnunet_protocols.h
@@ -2653,50 +2653,46 @@ extern "C"
2653 * Whanau DHT messages 2653 * Whanau DHT messages
2654 ******************************************************************************/ 2654 ******************************************************************************/
2655 2655
2656/**
2657 * This message contains the query for initialization of a finger
2658 */
2659#define GNUNET_MESSAGE_TYPE_WDHT_FINGER_SETUP 910
2660 2656
2661/** 2657/**
2662 * This message contains the response to the query for intialization of a finger 2658 * This message contains the query for performing a random walk
2663 */ 2659 */
2664#define GNUNET_MESSAGE_TYPE_WDHT_FINGER_SETUP_RESPONSE 911 2660#define GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK 910
2665 2661
2666/** 2662/**
2667 * This message contains a notification for the death of a finger 2663 * This message contains the result of a random walk
2668 */ 2664 */
2669#define GNUNET_MESSAGE_TYPE_WDHT_FINGER_DESTROY 912 2665#define GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK_RESPONSE 911
2670 2666
2671/** 2667/**
2672 * This message are used to route a query to a peer 2668 * This message contains a notification for the death of a trail
2673 */ 2669 */
2674#define GNUNET_MESSAGE_TYPE_WDHT_FINGER_ROUTE 913 2670#define GNUNET_MESSAGE_TYPE_WDHT_TRAIL_DESTROY 912
2675 2671
2676/** 2672/**
2677 * This message contains the query to find a successor 2673 * This message are used to route a query to a peer
2678 */ 2674 */
2679#define GNUNET_MESSAGE_TYPE_WDHT_NEIGHBOUR_FIND 914 2675#define GNUNET_MESSAGE_TYPE_WDHT_TRAIL_ROUTE 913
2680 2676
2681/** 2677/**
2682 * Message which contains the response to a new successor found 2678 * This message contains the query to transfer successor values.
2683 */ 2679 */
2684#define GNUNET_MESSAGE_TYPE_WDHT_NEIGHBOUR_FOUND 915 2680#define GNUNET_MESSAGE_TYPE_WDHT_SUCCESSOR_FIND 914
2685 2681
2686/** 2682/**
2687 * Message which contains the get query 2683 * Message which contains the get query
2688 */ 2684 */
2689#define GNUNET_MESSAGE_TYPE_WDHT_GET 916 2685#define GNUNET_MESSAGE_TYPE_WDHT_GET 915
2690 2686
2691/** 2687/**
2692 * Message which contains the put query 2688 * Message which contains the put query
2693 */ 2689 */
2694#define GNUNET_MESSAGE_TYPE_WDHT_PUT 917 2690#define GNUNET_MESSAGE_TYPE_WDHT_PUT 916
2695 2691
2696/** 2692/**
2697 * Message which contains the get result. 2693 * Message which contains the get result.
2698 */ 2694 */
2699#define GNUNET_MESSAGE_TYPE_WDHT_GET_RESULT 918 2695#define GNUNET_MESSAGE_TYPE_WDHT_GET_RESULT 917
2700 2696
2701 2697
2702/******************************************************************************* 2698/*******************************************************************************