diff options
author | xrs <xrs@mail36.net> | 2017-03-13 20:27:45 +0100 |
---|---|---|
committer | xrs <xrs@mail36.net> | 2017-03-13 20:27:45 +0100 |
commit | 501c1f7794be6e8a2ea15200dbdadd4c066edb89 (patch) | |
tree | 323d6d639ed513587b07e972f79589c7d96649e7 /src/multicast | |
parent | ea1d45f9f6fda99b0e8dd3ada75433b650983113 (diff) |
test_multicast_2peers.c: fix code style
Diffstat (limited to 'src/multicast')
-rw-r--r-- | src/multicast/test_multicast_2peers.c | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/src/multicast/test_multicast_2peers.c b/src/multicast/test_multicast_2peers.c index 02e60a905d..9d1f42063e 100644 --- a/src/multicast/test_multicast_2peers.c +++ b/src/multicast/test_multicast_2peers.c @@ -117,6 +117,7 @@ member_join_request (void *cls, } + int notify (void *cls, size_t *data_size, void *data) @@ -155,6 +156,7 @@ member_join_decision (void *cls, } } + static void member_message (void *cls, const struct GNUNET_MULTICAST_MessageHeader *msg) @@ -174,6 +176,7 @@ member_message (void *cls, GNUNET_SCHEDULER_shutdown (); } + static void origin_join_request (void *cls, const struct GNUNET_CRYPTO_EcdsaPublicKey *member_pub_key, @@ -208,6 +211,7 @@ origin_join_request (void *cls, result = GNUNET_OK; } + int origin_notify (void *cls, size_t *data_size, @@ -239,6 +243,7 @@ origin_request (void *cls, NULL); } + static void origin_message (void *cls, const struct GNUNET_MULTICAST_MessageHeader *msg) @@ -255,17 +260,18 @@ service_connect1 (void *cls, { member = ca_result; - if (NULL != member) + if (NULL == member) { - GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Connected to multicast service of member\n"); + result = GNUNET_SYSERR; + GNUNET_SCHEDULER_shutdown (); } else { - result = GNUNET_SYSERR; - GNUNET_SCHEDULER_shutdown (); + GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Connected to multicast service of member\n"); } } + static void multicast_da1 (void *cls, void * op_result) @@ -349,9 +355,10 @@ peer_information_cb (void *cls, multicast_da1, /* callback to be called when closing the opened service connection */ NULL); /* closure for the above two callbacks */ - } + } } + /** * Test logic of peer "0" being origin starts here. * @@ -485,7 +492,7 @@ main (int argc, char *argv[]) result = GNUNET_SYSERR; ret = GNUNET_TESTBED_test_run - ("test-multicast-multipeer", /* test case name */ + ("test-multicast-2peers", /* test case name */ "test_multicast.conf", /* template configuration */ NUM_PEERS, /* number of peers to start */ 0LL, /* Event mask - set to 0 for no event notifications */ @@ -498,4 +505,5 @@ main (int argc, char *argv[]) return 0; } -/* end of test_multicast_multipeer.c */ + +/* end of test_multicast_2peers.c */ |