aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2018-09-06 03:15:41 +0200
committerJulius Bünger <buenger@mytum.de>2018-09-06 03:20:55 +0200
commit2b1b981479da64d13d3ae8389964b029e9f268b6 (patch)
treed6b40690c231e398e4ab930657e440679981b829
parent727f0d8a8735dd638ff2f714f19c8c23852b99ba (diff)
downloadgnunet-2b1b981479da64d13d3ae8389964b029e9f268b6.tar.gz
gnunet-2b1b981479da64d13d3ae8389964b029e9f268b6.zip
Change cosmetics - keep compiler happy
-rw-r--r--src/rps/gnunet-rps.c6
-rw-r--r--src/rps/rps_api.c3
2 files changed, 9 insertions, 0 deletions
diff --git a/src/rps/gnunet-rps.c b/src/rps/gnunet-rps.c
index b3785a733..03b2c8ab7 100644
--- a/src/rps/gnunet-rps.c
+++ b/src/rps/gnunet-rps.c
@@ -63,6 +63,8 @@ static uint64_t num_view_updates;
63static void 63static void
64do_shutdown (void *cls) 64do_shutdown (void *cls)
65{ 65{
66 (void) cls;
67
66 if (NULL != req_handle) 68 if (NULL != req_handle)
67 GNUNET_RPS_request_cancel (req_handle); 69 GNUNET_RPS_request_cancel (req_handle);
68 GNUNET_RPS_disconnect (rps_handle); 70 GNUNET_RPS_disconnect (rps_handle);
@@ -83,6 +85,7 @@ reply_handle (void *cls,
83 const struct GNUNET_PeerIdentity *recv_peers) 85 const struct GNUNET_PeerIdentity *recv_peers)
84{ 86{
85 uint64_t i; 87 uint64_t i;
88 (void) cls;
86 89
87 req_handle = NULL; 90 req_handle = NULL;
88 for (i = 0; i < n; i++) 91 for (i = 0; i < n; i++)
@@ -108,6 +111,7 @@ view_update_handle (void *cls,
108 const struct GNUNET_PeerIdentity *recv_peers) 111 const struct GNUNET_PeerIdentity *recv_peers)
109{ 112{
110 uint64_t i; 113 uint64_t i;
114 (void) cls;
111 115
112 if (0 == n) 116 if (0 == n)
113 { 117 {
@@ -148,6 +152,8 @@ run (void *cls,
148{ 152{
149 static uint64_t num_peers; 153 static uint64_t num_peers;
150 static struct GNUNET_PeerIdentity zero_pid; 154 static struct GNUNET_PeerIdentity zero_pid;
155 (void) cls;
156 (void) cfgfile;
151 157
152 rps_handle = GNUNET_RPS_connect (cfg); 158 rps_handle = GNUNET_RPS_connect (cfg);
153 if (NULL == rps_handle) 159 if (NULL == rps_handle)
diff --git a/src/rps/rps_api.c b/src/rps/rps_api.c
index ca80e25e8..ac462f3a0 100644
--- a/src/rps/rps_api.c
+++ b/src/rps/rps_api.c
@@ -158,6 +158,7 @@ resend_requests_iterator (void *cls, uint32_t key, void *value)
158{ 158{
159 const struct GNUNET_RPS_Handle *h = cls; 159 const struct GNUNET_RPS_Handle *h = cls;
160 const struct GNUNET_RPS_Request_Handle *req_handle = value; 160 const struct GNUNET_RPS_Request_Handle *req_handle = value;
161 (void) key;
161 162
162 send_request (h, req_handle->id, req_handle->num_peers); 163 send_request (h, req_handle->id, req_handle->num_peers);
163 return GNUNET_YES; /* continue iterating */ 164 return GNUNET_YES; /* continue iterating */
@@ -195,6 +196,7 @@ check_reply (void *cls,
195{ 196{
196 uint16_t msize = ntohs (msg->header.size); 197 uint16_t msize = ntohs (msg->header.size);
197 uint32_t num_peers = ntohl (msg->num_peers); 198 uint32_t num_peers = ntohl (msg->num_peers);
199 (void) cls;
198 200
199 msize -= sizeof (struct GNUNET_RPS_CS_ReplyMessage); 201 msize -= sizeof (struct GNUNET_RPS_CS_ReplyMessage);
200 if ( (msize / sizeof (struct GNUNET_PeerIdentity) != num_peers) || 202 if ( (msize / sizeof (struct GNUNET_PeerIdentity) != num_peers) ||
@@ -289,6 +291,7 @@ check_view_update (void *cls,
289{ 291{
290 uint16_t msize = ntohs (msg->header.size); 292 uint16_t msize = ntohs (msg->header.size);
291 uint32_t num_peers = ntohl (msg->num_peers); 293 uint32_t num_peers = ntohl (msg->num_peers);
294 (void) cls;
292 295
293 msize -= sizeof (struct GNUNET_RPS_CS_DEBUG_ViewReply); 296 msize -= sizeof (struct GNUNET_RPS_CS_DEBUG_ViewReply);
294 if ( (msize / sizeof (struct GNUNET_PeerIdentity) != num_peers) || 297 if ( (msize / sizeof (struct GNUNET_PeerIdentity) != num_peers) ||