aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authort3sserakt <t3ss@posteo.de>2022-01-21 15:31:44 +0100
committert3sserakt <t3ss@posteo.de>2022-01-21 15:31:44 +0100
commitfc99f54070e04c043c14f2244f85833ecf6b00c4 (patch)
treeb82d8296064960d3d068356f4fd939d8e1555d65 /src/include
parent856078f624e0fe37b571fd56030f987b7844e2c9 (diff)
downloadgnunet-fc99f54070e04c043c14f2244f85833ecf6b00c4.tar.gz
gnunet-fc99f54070e04c043c14f2244f85833ecf6b00c4.zip
- fixed bug with broadcast test.
- added configurable port for router in netjail_start.sh. - added key for configuring broadcast in topo.sh. - port for communicators can variable. - added variable additional_connects in GNUNET_TESTING_NetjailTopology. - additional connects can be configured in topology file. - added distance vector test with circle topology. - Reassambly for fragmentation is now stored at VirtualLink, not at Neighbour. - DV forwarding distingush between control flow and payload. - handling fragment box switch to be based on VirtualLink. - reliability box will not be handled like a fragment. - propagating next retransmission attempt variable of fragment to the root message. - check for fragmentation when adding reliability box. - several smaller bug fixes.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_testing_netjail_lib.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/gnunet_testing_netjail_lib.h b/src/include/gnunet_testing_netjail_lib.h
index 69d6e7a7d..4b5d7cfa1 100644
--- a/src/include/gnunet_testing_netjail_lib.h
+++ b/src/include/gnunet_testing_netjail_lib.h
@@ -232,6 +232,11 @@ struct GNUNET_TESTING_NetjailTopology
232 * Hash map containing the global known nodes which are not natted. 232 * Hash map containing the global known nodes which are not natted.
233 */ 233 */
234 struct GNUNET_CONTAINER_MultiShortmap *map_globals; 234 struct GNUNET_CONTAINER_MultiShortmap *map_globals;
235
236 /**
237 * Additional connects we do expect, beside the connects which are configured in the topology.
238 */
239 unsigned int additional_connects;
235}; 240};
236 241
237/** 242/**