GNUnet  0.20.0
gnunet-service-messenger_basement.h
Go to the documentation of this file.
1 /*
2  This file is part of GNUnet.
3  Copyright (C) 2020--2021 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  */
26 #ifndef GNUNET_SERVICE_MESSENGER_BASEMENT_H
27 #define GNUNET_SERVICE_MESSENGER_BASEMENT_H
28 
30 
37 size_t
38 count_of_tunnels (const struct GNUNET_MESSENGER_ListTunnels *tunnels);
39 
50 int
51 should_connect_tunnel_to (size_t count,
52  size_t src,
53  size_t dst);
54 
65 int
66 required_connection_between (size_t count,
67  size_t src,
68  size_t dst);
69 
70 #endif //GNUNET_SERVICE_MESSENGER_BASEMENT_H
int 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...
int 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...
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).
messenger api: client and service implementation of GNUnet MESSENGER service