- doxygen
authorBart Polot <bart@net.in.tum.de>
Mon, 27 Apr 2015 19:15:04 +0000 (19:15 +0000)
committerBart Polot <bart@net.in.tum.de>
Mon, 27 Apr 2015 19:15:04 +0000 (19:15 +0000)
src/cadet/gnunet-service-cadet_tunnel.c

index 3fa67c278d35e7c88741ec770ca9b4b2d2c03362..554dcfaac7baf0c3c6f8a01b00eb0a0f95367798 100644 (file)
@@ -151,14 +151,34 @@ enum CadetTunnelEncryption
   CADET_OTR
 };
 
+/**
+ * Struct to old keys for skipped messages while advancing the Axolotl ratchet.
+ */
 struct CadetTunnelSkippedKey
 {
+  /**
+   * DLL next.
+   */
   struct CadetTunnelSkippedKey *next;
+
+  /**
+   * DLL prev.
+   */
   struct CadetTunnelSkippedKey *prev;
 
+  /**
+   * When was this key stored (for timeout).
+   */
   struct GNUNET_TIME_Absolute timestamp;
 
+  /**
+   * Header key.
+   */
   struct GNUNET_CRYPTO_SymmetricSessionKey HK;
+
+  /**
+   * Message key.
+   */
   struct GNUNET_CRYPTO_SymmetricSessionKey MK;
 };