aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rps/rps.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/rps/rps.h b/src/rps/rps.h
index f0f7d5461..2e3fdae1e 100644
--- a/src/rps/rps.h
+++ b/src/rps/rps.h
@@ -38,19 +38,21 @@ GNUNET_NETWORK_STRUCT_BEGIN
38***********************************************************************/ 38***********************************************************************/
39 39
40/** 40/**
41 * P2P Message to push own ID to other peer. 41 * P2P Message to send PeerIDs to other peer.
42 */ 42 */
43struct GNUNET_RPS_P2P_PushMessage 43struct GNUNET_RPS_P2P_PullReplyMessage
44{ 44{
45 /** 45 /**
46 * Header including size and type in NBO 46 * Header including size and type in NBO
47 */ 47 */
48 struct GNUNET_MessageHeader header; 48 struct GNUNET_MessageHeader header;
49 49
50 /** 50 /**
51 * TODO Proof of work 51 * Number of PeerIDs sent
52 */ 52 */
53 uint64_t placeholder; 53 uint32_t num_peers GNUNET_PACKED;
54
55 /* Followed by num_peers * GNUNET_PeerIdentity */
54}; 56};
55 57
56 58