diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-11-07 00:06:26 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-11-07 00:06:26 +0000 |
commit | 3fd8c038f6b42cd13f20fa82ce2f130d258366c0 (patch) | |
tree | b3e06f7bffac941da29a4f2539e92b764573a7e8 /src/transport/test_quota_compliance.c | |
parent | 49f07dd6fa3717c2035f616f973e4b67ac0b4f40 (diff) |
-some code cleanup (indentation, redundant branches, etc.)
Diffstat (limited to 'src/transport/test_quota_compliance.c')
-rw-r--r-- | src/transport/test_quota_compliance.c | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/src/transport/test_quota_compliance.c b/src/transport/test_quota_compliance.c index b53bda514..d01d335f8 100644 --- a/src/transport/test_quota_compliance.c +++ b/src/transport/test_quota_compliance.c @@ -209,23 +209,29 @@ get_size (unsigned int iter) static void -notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer, +notify_receive (void *cls, + const struct GNUNET_PeerIdentity *peer, const struct GNUNET_MessageHeader *message) { const struct TestMessage *hdr; + struct PeerContext *p = cls; hdr = (const struct TestMessage *) message; if (MTYPE != ntohs (message->type)) return; - struct PeerContext *p = cls; - char *ps = GNUNET_strdup (GNUNET_i2s (&p->id)); - - GNUNET_log (GNUNET_ERROR_TYPE_INFO, - "Peer %u (`%s') got message %u of size %u from peer (`%s')\n", - p->no, ps, ntohl (hdr->num), ntohs (message->size), - GNUNET_i2s (peer)); - GNUNET_free (ps); + { + char *ps = GNUNET_strdup (GNUNET_i2s (&p->id)); + + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + "Peer %u (`%s') got message %u of size %u from peer (`%s')\n", + p->no, + ps, + ntohl (hdr->num), + ntohs (message->size), + GNUNET_i2s (peer)); + GNUNET_free (ps); + } } @@ -315,8 +321,10 @@ notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer) struct PeerContext *p = cls; - GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%4s') connected to us!\n", - p->no, GNUNET_i2s (peer)); + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, + "Peer %u (`%4s') connected to us!\n", + p->no, + GNUNET_i2s (peer)); } @@ -325,7 +333,9 @@ notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer) { struct PeerContext *p = cls; - GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%4s') disconnected!\n", p->no, + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, + "Peer %u (`%4s') disconnected!\n", + p->no, GNUNET_i2s (peer)); if (th != NULL) GNUNET_TRANSPORT_notify_transmit_ready_cancel (th); |