gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r34906 - gnunet/src/rps


From: gnunet
Subject: [GNUnet-SVN] r34906 - gnunet/src/rps
Date: Fri, 16 Jan 2015 15:39:37 +0100

Author: ch3
Date: 2015-01-16 15:39:37 +0100 (Fri, 16 Jan 2015)
New Revision: 34906

Modified:
   gnunet/src/rps/rps.h
Log:
fixed wrong deletion

Modified: gnunet/src/rps/rps.h
===================================================================
--- gnunet/src/rps/rps.h        2015-01-16 14:18:22 UTC (rev 34905)
+++ gnunet/src/rps/rps.h        2015-01-16 14:39:37 UTC (rev 34906)
@@ -38,19 +38,21 @@
 ***********************************************************************/
 
 /**
- * P2P Message to push own ID to other peer.
+ * P2P Message to send PeerIDs to other peer.
  */
-struct GNUNET_RPS_P2P_PushMessage
+struct GNUNET_RPS_P2P_PullReplyMessage
 {
   /**
    * Header including size and type in NBO
    */
   struct GNUNET_MessageHeader header;
 
-  /** 
-   * TODO Proof of work
+  /**
+   * Number of PeerIDs sent
    */
-  uint64_t placeholder;
+  uint32_t num_peers GNUNET_PACKED;
+
+  /* Followed by num_peers * GNUNET_PeerIdentity */
 };
 
 




reply via email to

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