aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-02-03 13:23:01 +0000
committerChristian Grothoff <christian@grothoff.org>2015-02-03 13:23:01 +0000
commit55cecdea8638fa23c68e7ade7a8d5629da658f9e (patch)
treeb1807e93dad80f63bbe96937352519e4dade3892 /src/transport
parent2aeb9884df190077944584342157afd5d32d6c8a (diff)
downloadgnunet-55cecdea8638fa23c68e7ade7a8d5629da658f9e.tar.gz
gnunet-55cecdea8638fa23c68e7ade7a8d5629da658f9e.zip
-document struct
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/gnunet-service-transport_neighbours.c16
1 files changed, 8 insertions, 8 deletions
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)
2092 2092
2093 2093
2094/** 2094/**
2095 * FIXME 2095 * Entry in a DLL we use to keep track of pending blacklist checks.
2096 */ 2096 */
2097struct BlacklistCheckSwitchContext 2097struct BlacklistCheckSwitchContext
2098{ 2098{
2099 /** 2099 /**
2100 * FIXME 2100 * DLL prev pointer.
2101 */ 2101 */
2102 struct BlacklistCheckSwitchContext *prev; 2102 struct BlacklistCheckSwitchContext *prev;
2103 2103
2104 /** 2104 /**
2105 * FIXME 2105 * DLL next pointer.
2106 */ 2106 */
2107 struct BlacklistCheckSwitchContext *next; 2107 struct BlacklistCheckSwitchContext *next;
2108 2108
2109 /** 2109 /**
2110 * FIXME 2110 * Handle to the blacklist check we are performing.
2111 */ 2111 */
2112 struct GST_BlacklistCheck *blc; 2112 struct GST_BlacklistCheck *blc;
2113 2113
2114 /** 2114 /**
2115 * FIXME 2115 * Address we are asking the blacklist subsystem about.
2116 */ 2116 */
2117 struct GNUNET_HELLO_Address *address; 2117 struct GNUNET_HELLO_Address *address;
2118 2118
2119 /** 2119 /**
2120 * FIXME 2120 * Session we should use in conjunction with @e address, can be NULL.
2121 */ 2121 */
2122 struct Session *session; 2122 struct Session *session;
2123 2123
2124 /** 2124 /**
2125 * FIXME 2125 * Inbound bandwidth that was assigned to @e address.
2126 */ 2126 */
2127 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in; 2127 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in;
2128 2128
2129 /** 2129 /**
2130 * FIXME 2130 * Outbound bandwidth that was assigned to @e address.
2131 */ 2131 */
2132 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out; 2132 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out;
2133}; 2133};