aboutsummaryrefslogtreecommitdiff
path: root/src/transport/test_transport_api_monitor_peers.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-11-07 00:06:26 +0000
committerChristian Grothoff <christian@grothoff.org>2015-11-07 00:06:26 +0000
commit3fd8c038f6b42cd13f20fa82ce2f130d258366c0 (patch)
treeb3e06f7bffac941da29a4f2539e92b764573a7e8 /src/transport/test_transport_api_monitor_peers.c
parent49f07dd6fa3717c2035f616f973e4b67ac0b4f40 (diff)
downloadgnunet-3fd8c038f6b42cd13f20fa82ce2f130d258366c0.tar.gz
gnunet-3fd8c038f6b42cd13f20fa82ce2f130d258366c0.zip
-some code cleanup (indentation, redundant branches, etc.)
Diffstat (limited to 'src/transport/test_transport_api_monitor_peers.c')
-rw-r--r--src/transport/test_transport_api_monitor_peers.c28
1 files changed, 16 insertions, 12 deletions
diff --git a/src/transport/test_transport_api_monitor_peers.c b/src/transport/test_transport_api_monitor_peers.c
index 8cd952cc5..38884f7d5 100644
--- a/src/transport/test_transport_api_monitor_peers.c
+++ b/src/transport/test_transport_api_monitor_peers.c
@@ -237,21 +237,25 @@ notify_ready (void *cls, size_t size, void *buf)
237 } 237 }
238 238
239 GNUNET_assert (size >= TEST_MESSAGE_SIZE); 239 GNUNET_assert (size >= TEST_MESSAGE_SIZE);
240 if (buf != NULL) 240 memset (buf, '\0', TEST_MESSAGE_SIZE);
241 hdr = buf;
242 hdr->size = htons (TEST_MESSAGE_SIZE);
243 hdr->type = htons (TEST_MESSAGE_TYPE);
244
241 { 245 {
242 memset (buf, '\0', TEST_MESSAGE_SIZE); 246 char *ps = GNUNET_strdup (GNUNET_i2s (&p2->id));
243 hdr = buf; 247
244 hdr->size = htons (TEST_MESSAGE_SIZE); 248 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
245 hdr->type = htons (TEST_MESSAGE_TYPE); 249 "Peer %u (`%4s') sending message with type %u and size %u bytes to peer %u (`%4s')\n",
250 p2->no,
251 ps,
252 ntohs (hdr->type),
253 ntohs (hdr->size),
254 p->no,
255 GNUNET_i2s (&p->id));
256 GNUNET_free (ps);
246 } 257 }
247 258
248 char *ps = GNUNET_strdup (GNUNET_i2s (&p2->id));
249 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
250 "Peer %u (`%4s') sending message with type %u and size %u bytes to peer %u (`%4s')\n",
251 p2->no, ps, ntohs (hdr->type), ntohs (hdr->size), p->no,
252 GNUNET_i2s (&p->id));
253 GNUNET_free (ps);
254
255 return TEST_MESSAGE_SIZE; 259 return TEST_MESSAGE_SIZE;
256} 260}
257 261