X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Ftransport%2Ftransport-testing.c;h=e3d4b7a9bdc9d34a07f3be7a94ac5157f8c74c4b;hb=ad1244d958b76cb249028c7ad87ff84df49293ff;hp=c0775a1354ec7fc11f283bed5366cc0d113ff15f;hpb=40826ec2467ee0e6e4b89c0d073aebf5af99099c;p=oweals%2Fgnunet.git diff --git a/src/transport/transport-testing.c b/src/transport/transport-testing.c index c0775a135..e3d4b7a9b 100644 --- a/src/transport/transport-testing.c +++ b/src/transport/transport-testing.c @@ -2,20 +2,18 @@ This file is part of GNUnet. Copyright (C) 2006, 2009, 2015, 2016 GNUnet e.V. - GNUnet is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published - by the Free Software Foundation; either version 3, or (at your - option) any later version. + GNUnet is free software: you can redistribute it and/or modify it + under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, + or (at your option) any later version. GNUnet is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU General Public License - along with GNUnet; see the file COPYING. If not, write to the - Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. + Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . */ /** * @file transport-testing.c @@ -49,7 +47,7 @@ find_peer_context (struct GNUNET_TRANSPORT_TESTING_Handle *tth, * * @param p1 first peer * @param p2 second peer - * @param cb function to call + * @param cb function to call * @param cb_cls closure for @a cb */ void @@ -66,7 +64,7 @@ GNUNET_TRANSPORT_TESTING_find_connecting_context (struct GNUNET_TRANSPORT_TESTIN { ccn = cc->next; if ( (cc->p1 == p1) && - (cc->p2 == p2) ) + (cc->p2 == p2) ) cb (cb_cls, cc); } @@ -74,7 +72,7 @@ GNUNET_TRANSPORT_TESTING_find_connecting_context (struct GNUNET_TRANSPORT_TESTIN static void -set_p1c (void *cls, +set_p1c (void *cls, struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cx) { int *found = cls; @@ -86,7 +84,7 @@ set_p1c (void *cls, static void -set_mq (void *cls, +set_mq (void *cls, struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cx) { struct GNUNET_MQ_Handle *mq = cls; @@ -96,7 +94,7 @@ set_mq (void *cls, static void -set_p2c (void *cls, +set_p2c (void *cls, struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cx) { int *found = cls; @@ -108,7 +106,7 @@ set_p2c (void *cls, static void -clear_p1c (void *cls, +clear_p1c (void *cls, struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cx) { int *found = cls; @@ -120,7 +118,7 @@ clear_p1c (void *cls, static void -clear_p2c (void *cls, +clear_p2c (void *cls, struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cx) { int *found = cls; @@ -154,7 +152,7 @@ notify_connect (void *cls, else ret = NULL; - if (p2 != NULL) + if (NULL != p2) GNUNET_asprintf (&p2_s, "%u (`%s')", p2->no, @@ -267,7 +265,7 @@ notify_disconnect (void *cls, int no = 0; struct GNUNET_TRANSPORT_TESTING_PeerContext *p2 = NULL; struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cc; - + p2 = find_peer_context (p->tth, peer); no = p->no; @@ -384,9 +382,9 @@ GNUNET_TRANSPORT_TESTING_start_peer (struct GNUNET_TRANSPORT_TESTING_Handle *tth { char *emsg = NULL; struct GNUNET_TRANSPORT_TESTING_PeerContext *p; - struct GNUNET_PeerIdentity *dummy; + struct GNUNET_PeerIdentity dummy; unsigned int i; - + if (GNUNET_NO == GNUNET_DISK_file_test (cfgname)) { LOG (GNUNET_ERROR_TYPE_ERROR, @@ -407,13 +405,16 @@ GNUNET_TRANSPORT_TESTING_start_peer (struct GNUNET_TRANSPORT_TESTING_Handle *tth GNUNET_memcpy (p->handlers, handlers, i * sizeof (struct GNUNET_MQ_MessageHandler)); - } + } if (NULL != cb_cls) p->cb_cls = cb_cls; else p->cb_cls = p; p->start_cb = start_cb; - p->start_cb_cls = start_cb_cls; + if (NULL != start_cb_cls) + p->start_cb_cls = start_cb_cls; + else + p->start_cb_cls = p; GNUNET_CONTAINER_DLL_insert (tth->p_head, tth->p_tail, p); @@ -532,7 +533,7 @@ GNUNET_TRANSPORT_TESTING_restart_peer (struct GNUNET_TRANSPORT_TESTING_PeerConte { struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cc; struct GNUNET_TRANSPORT_TESTING_ConnectRequest *ccn; - + /* shutdown */ LOG (GNUNET_ERROR_TYPE_DEBUG, "Stopping peer %u (`%s')\n", @@ -675,6 +676,11 @@ GNUNET_TRANSPORT_TESTING_stop_peer (struct GNUNET_TRANSPORT_TESTING_PeerContext GNUNET_CONFIGURATION_destroy (p->cfg); p->cfg = NULL; } + if (NULL != p->handlers) + { + GNUNET_free (p->handlers); + p->handlers = NULL; + } GNUNET_CONTAINER_DLL_remove (tth->p_head, tth->p_tail, p); @@ -770,7 +776,7 @@ GNUNET_TRANSPORT_TESTING_connect_peers (struct GNUNET_TRANSPORT_TESTING_PeerCont break; } } - + cc = GNUNET_new (struct GNUNET_TRANSPORT_TESTING_ConnectRequest); cc->p1 = p1; cc->p2 = p2;