X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Ftestbed%2Ftestbed_api_underlay.c;h=7e509fdfe031b375a5b37d05aa2675e49ef822dd;hb=d17a17ea785f91c18b5694eab3372c4e4564d95e;hp=5b0aa8c896396760d9638eb76dfb7f3050e66a05;hpb=4e2504a967ba09643c6dd7e3b9ce400e30adcb3d;p=oweals%2Fgnunet.git diff --git a/src/testbed/testbed_api_underlay.c b/src/testbed/testbed_api_underlay.c index 5b0aa8c89..7e509fdfe 100644 --- a/src/testbed/testbed_api_underlay.c +++ b/src/testbed/testbed_api_underlay.c @@ -1,20 +1,22 @@ /* - This file is part of GNUnet. - Copyright (C) 2008--2013 GNUnet e.V. - - 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 - 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 . -*/ + This file is part of GNUnet. + Copyright (C) 2008--2013 GNUnet e.V. + + 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 + 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 . + + SPDX-License-Identifier: AGPL3.0-or-later + */ /** * @file testbed/testbed_api_underlay.c @@ -149,7 +151,9 @@ free_link_properties (struct GNUNET_TESTBED_UnderlayLinkModel *model) */ struct GNUNET_TESTBED_UnderlayLinkModel * GNUNET_TESTBED_underlaylinkmodel_create (struct GNUNET_TESTBED_Peer *peer, - enum GNUNET_TESTBED_UnderlayLinkModelType type) + enum + GNUNET_TESTBED_UnderlayLinkModelType + type) { struct GNUNET_TESTBED_UnderlayLinkModel *m; @@ -171,7 +175,9 @@ GNUNET_TESTBED_underlaylinkmodel_create (struct GNUNET_TESTBED_Peer *peer, * @param peer the peer to add */ void -GNUNET_TESTBED_underlaylinkmodel_add_peer (struct GNUNET_TESTBED_UnderlayLinkModel *model, +GNUNET_TESTBED_underlaylinkmodel_add_peer (struct + GNUNET_TESTBED_UnderlayLinkModel * + model, struct GNUNET_TESTBED_Peer *peer) { struct ListEntry *entry; @@ -195,7 +201,9 @@ GNUNET_TESTBED_underlaylinkmodel_add_peer (struct GNUNET_TESTBED_UnderlayLinkMod * @param bandwidth bandwidth of the link in kilobytes per second [kB/s] */ void -GNUNET_TESTBED_underlaylinkmodel_set_link (struct GNUNET_TESTBED_UnderlayLinkModel *model, +GNUNET_TESTBED_underlaylinkmodel_set_link (struct + GNUNET_TESTBED_UnderlayLinkModel * + model, struct GNUNET_TESTBED_Peer *peer, uint32_t latency, uint32_t loss, @@ -222,7 +230,8 @@ GNUNET_TESTBED_underlaylinkmodel_set_link (struct GNUNET_TESTBED_UnderlayLinkMod * @param model the model to unallocate */ void -GNUNET_TESTBED_underlaylinkmodel_free (struct GNUNET_TESTBED_UnderlayLinkModel *model) +GNUNET_TESTBED_underlaylinkmodel_free (struct + GNUNET_TESTBED_UnderlayLinkModel *model) { model->peer->underlay_model_exists = 0; free_entries (model); @@ -238,7 +247,8 @@ GNUNET_TESTBED_underlaylinkmodel_free (struct GNUNET_TESTBED_UnderlayLinkModel * * @param model the model to commit */ void -GNUNET_TESTBED_underlaylinkmodel_commit (struct GNUNET_TESTBED_UnderlayLinkModel *model) +GNUNET_TESTBED_underlaylinkmodel_commit (struct + GNUNET_TESTBED_UnderlayLinkModel *model) { /* FIXME: Marshal the model into a message */ GNUNET_break (0);