aboutsummaryrefslogtreecommitdiff
path: root/src/rps/rps.h
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2015-01-16 14:18:22 +0000
committerJulius Bünger <buenger@mytum.de>2015-01-16 14:18:22 +0000
commitbe799c369509a499c65ad8c6403db9703acb95b7 (patch)
tree7aa41e65639c6ead056d08abcdafb48e8d318a3e /src/rps/rps.h
parentce19dd7762ac0628e489ce964fbe3d182fb45551 (diff)
send empty push/pull-request messages
Diffstat (limited to 'src/rps/rps.h')
-rw-r--r--src/rps/rps.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/rps/rps.h b/src/rps/rps.h
index 3ba0cffcf6..f0f7d54614 100644
--- a/src/rps/rps.h
+++ b/src/rps/rps.h
@@ -53,39 +53,6 @@ struct GNUNET_RPS_P2P_PushMessage
uint64_t placeholder;
};
-/**
- * P2P Message to request PeerIDs from other peer.
- */
-struct GNUNET_RPS_P2P_PullRequestMessage
-{
- /**
- * Header including size and type in NBO
- */
- struct GNUNET_MessageHeader header;
-
- /* This probably stays empty as we just
- * infrom the peer of our existence */
- uint64_t placeholder;
-};
-
-/**
- * P2P Message to send PeerIDs to other peer.
- */
-struct GNUNET_RPS_P2P_PullReplyMessage
-{
- /**
- * Header including size and type in NBO
- */
- struct GNUNET_MessageHeader header;
-
- /**
- * Number of PeerIDs sent
- */
- uint32_t num_peers GNUNET_PACKED;
-
- /* Followed by num_peers * GNUNET_PeerIdentity */
-};
-
/***********************************************************************