client_manager: add API for async operations
[oweals/gnunet.git] / src / include / gnunet_protocols.h
index 0db2ba7564333c3c21b8ef36e280d063b5b995fd..cdbc46f7f02c3f6ba92a1e925ea96425ad38f0cb 100644 (file)
@@ -895,6 +895,16 @@ extern "C"
  */
 #define GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED              280
 
+/**
+ * Axolotl key exchange.
+ */
+#define GNUNET_MESSAGE_TYPE_CADET_AX_KX                  281
+
+/**
+ * Axolotl encrypted data.
+ */
+#define GNUNET_MESSAGE_TYPE_CADET_AX                     282
+
 /**
  * Payload client <-> service
  */
@@ -2643,50 +2653,48 @@ extern "C"
  * Whanau DHT messages
  ******************************************************************************/
 
-/**
- *
- */
-#define GNUNET_MESSAGE_TYPE_WDHT_FINGER_SETUP 910
 
 /**
- *
+ * This message contains the query for performing a random walk
  */
-#define GNUNET_MESSAGE_TYPE_WDHT_FINGER_SETUP_RESPONSE 911
+#define GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK 910
 
 /**
- *
+ * This message contains the result of a random walk
  */
-#define GNUNET_MESSAGE_TYPE_WDHT_FINGER_DESTROY 912
+#define GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK_RESPONSE 911
 
 /**
- *
+ * This message contains a notification for the death of a trail
  */
-#define GNUNET_MESSAGE_TYPE_WDHT_FINGER_ROUTE 913
+#define GNUNET_MESSAGE_TYPE_WDHT_TRAIL_DESTROY 912
 
 /**
- *
+ * This message are used to route a query to a peer
  */
-#define GNUNET_MESSAGE_TYPE_WDHT_NEIGHBOUR_FIND 914
+#define GNUNET_MESSAGE_TYPE_WDHT_TRAIL_ROUTE 913
 
 /**
- *
+ * This message contains the query to transfer successor values.
  */
-#define GNUNET_MESSAGE_TYPE_WDHT_NEIGHBOUR_FOUND 915
+#define GNUNET_MESSAGE_TYPE_WDHT_SUCCESSOR_FIND 914
 
 /**
- *
+ * Message which contains the get query
  */
-#define GNUNET_MESSAGE_TYPE_WDHT_GET 916
+#define GNUNET_MESSAGE_TYPE_WDHT_GET 915
 
 /**
- *
+ * Message which contains the "put", a response to
+ * #GNUNET_MESSAGE_TYPE_WDHT_SUCCESSOR_FIND.
  */
-#define GNUNET_MESSAGE_TYPE_WDHT_PUT 917
+#define GNUNET_MESSAGE_TYPE_WDHT_PUT 916
 
 /**
- *
+ * Message which contains the get result, a response
+ * to #GNUNET_MESSAGE_TYPE_WDHT_GET.
  */
-#define GNUNET_MESSAGE_TYPE_WDHT_GET_RESULT 918
+#define GNUNET_MESSAGE_TYPE_WDHT_GET_RESULT 917
 
 
 /*******************************************************************************