gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r35614 - gnunet/src/cadet


From: gnunet
Subject: [GNUnet-SVN] r35614 - gnunet/src/cadet
Date: Mon, 27 Apr 2015 21:15:04 +0200

Author: bartpolot
Date: 2015-04-27 21:15:04 +0200 (Mon, 27 Apr 2015)
New Revision: 35614

Modified:
   gnunet/src/cadet/gnunet-service-cadet_tunnel.c
Log:
- doxygen

Modified: gnunet/src/cadet/gnunet-service-cadet_tunnel.c
===================================================================
--- gnunet/src/cadet/gnunet-service-cadet_tunnel.c      2015-04-27 19:15:02 UTC 
(rev 35613)
+++ gnunet/src/cadet/gnunet-service-cadet_tunnel.c      2015-04-27 19:15:04 UTC 
(rev 35614)
@@ -151,14 +151,34 @@
   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;
 };
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]