X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fcadet%2Fgnunet-service-cadet.h;h=3daeeff74db2ec275c18cc5476d8100a9987b2a7;hb=988ac7f121b646cba3ca44567f54b1315398505d;hp=2f2d7baf3500d53f47b228998c5d08507af01d5a;hpb=02babcf349e9b80f4ff12893b4f8a78601c0e91c;p=oweals%2Fgnunet.git diff --git a/src/cadet/gnunet-service-cadet.h b/src/cadet/gnunet-service-cadet.h index 2f2d7baf3..3daeeff74 100644 --- a/src/cadet/gnunet-service-cadet.h +++ b/src/cadet/gnunet-service-cadet.h @@ -3,20 +3,20 @@ This file is part of GNUnet. Copyright (C) 2001-2017 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. + 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 . - 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. + SPDX-License-Identifier: AGPL3.0-or-later */ /** @@ -29,7 +29,6 @@ #define GNUNET_SERVICE_CADET_H #include "gnunet_util_lib.h" -#define NEW_CADET 1 #include "cadet_protocol.h" /** @@ -145,6 +144,30 @@ struct CadetTConnection }; +/** + * Port opened by a client. + */ +struct OpenPort +{ + + /** + * Client that opened the port. + */ + struct CadetClient *c; + + /** + * Port number. + */ + struct GNUNET_HashCode port; + + /** + * Port hashed with our PID (matches incoming OPEN messages). + */ + struct GNUNET_HashCode h_port; + +}; + + /** * Active path through the network (used by a tunnel). There may * be at most one connection per path. @@ -193,7 +216,8 @@ extern struct GNUNET_PeerIdentity my_full_id; extern struct GNUNET_CRYPTO_EddsaPrivateKey *my_private_key; /** - * All ports clients of this peer have opened. + * All ports clients of this peer have opened. Maps from + * a hashed port to a `struct OpenPort`. */ extern struct GNUNET_CONTAINER_MultiHashMap *open_ports; @@ -206,7 +230,7 @@ extern struct GNUNET_CONTAINER_MultiShortmap *connections; /** * Map from ports to channels where the ports were closed at the * time we got the inbound connection. - * Indexed by port, contains `struct CadetChannel`. + * Indexed by h_port, contains `struct CadetChannel`. */ extern struct GNUNET_CONTAINER_MultiHashMap *loose_channels; @@ -268,11 +292,11 @@ GSC_handle_remote_channel_destroy (struct CadetClient *c, * A client that created a loose channel that was not bound to a port * disconnected, drop it from the #loose_channels list. * - * @param port the port the channel was trying to bind to + * @param h_port the hashed port the channel was trying to bind to * @param ch the channel that was lost */ void -GSC_drop_loose_channel (const struct GNUNET_HashCode *port, +GSC_drop_loose_channel (const struct GNUNET_HashCode *h_port, struct CadetChannel *ch);