From: Christian Grothoff Date: Tue, 3 Feb 2015 13:23:01 +0000 (+0000) Subject: -document struct X-Git-Tag: initial-import-from-subversion-38251~2481 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=55cecdea8638fa23c68e7ade7a8d5629da658f9e;p=oweals%2Fgnunet.git -document struct --- diff --git a/src/transport/gnunet-service-transport_neighbours.c b/src/transport/gnunet-service-transport_neighbours.c index ff3d51a4b..bcbc4601e 100644 --- a/src/transport/gnunet-service-transport_neighbours.c +++ b/src/transport/gnunet-service-transport_neighbours.c @@ -2092,42 +2092,42 @@ setup_neighbour (const struct GNUNET_PeerIdentity *peer) /** - * FIXME + * Entry in a DLL we use to keep track of pending blacklist checks. */ struct BlacklistCheckSwitchContext { /** - * FIXME + * DLL prev pointer. */ struct BlacklistCheckSwitchContext *prev; /** - * FIXME + * DLL next pointer. */ struct BlacklistCheckSwitchContext *next; /** - * FIXME + * Handle to the blacklist check we are performing. */ struct GST_BlacklistCheck *blc; /** - * FIXME + * Address we are asking the blacklist subsystem about. */ struct GNUNET_HELLO_Address *address; /** - * FIXME + * Session we should use in conjunction with @e address, can be NULL. */ struct Session *session; /** - * FIXME + * Inbound bandwidth that was assigned to @e address. */ struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in; /** - * FIXME + * Outbound bandwidth that was assigned to @e address. */ struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out; };