GNUnet 0.21.1
gnunet-service-messenger_basement.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2020--2023 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
27
28size_t
30{
31 GNUNET_assert (tunnels);
32
33 const struct GNUNET_MESSENGER_ListTunnel *element;
34 size_t count = 0;
35
36 for (element = tunnels->head; element; element = element->next)
37 count++;
38
39 return count;
40}
41
42
45 size_t src,
46 size_t dst)
47{
48 if ((src + 1) % count == dst % count)
49 return GNUNET_YES;
50
51 return GNUNET_NO;
52}
53
54
57 size_t src,
58 size_t dst)
59{
60 if (GNUNET_YES == should_connect_tunnel_to (count, src, dst))
61 return GNUNET_YES;
62 if (GNUNET_YES == should_connect_tunnel_to (count, dst, src))
63 return GNUNET_YES;
64
65 return GNUNET_NO;
66}
enum GNUNET_GenericReturnValue should_connect_tunnel_to(size_t count, size_t src, size_t dst)
Returns GNUNET_YES or GNUNET_NO to determine if the peer at index src should or should not connect ou...
enum GNUNET_GenericReturnValue required_connection_between(size_t count, size_t src, size_t dst)
Returns GNUNET_YES or GNUNET_NO to determine if the peers of index src and index dst should be connec...
size_t count_of_tunnels(const struct GNUNET_MESSENGER_ListTunnels *tunnels)
Returns the count of peers in a list (typically from the basement of a room).
GNUNET_GenericReturnValue
Named constants for return values.
@ GNUNET_YES
@ GNUNET_NO
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
struct GNUNET_MESSENGER_ListTunnel * next
struct GNUNET_MESSENGER_ListTunnel * head