├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── CONTRIBUTOR ├── COPYING ├── LICENSE ├── MemCheck.supp ├── README.md ├── docs ├── argument_for_pre-sentinel.md ├── bootstrap_overview.md ├── class_diagram.dia ├── group_message_delivery.md ├── group_message_handling.md ├── sentinel.md └── sequence_diagram.dia ├── include └── maidsafe │ └── routing │ ├── account_transfer_info.h │ ├── client.h │ ├── contact.h │ ├── endpoint_pair.h │ ├── node_info.h │ ├── routing_node.h │ ├── source_address.h │ ├── tests │ ├── routing_network.h │ └── zero_state_helpers.h │ └── types.h └── src └── maidsafe └── routing ├── account_transfer_info.cc ├── accumulator.h ├── async_exchange.h ├── async_queue.h ├── bootstrap_handler.cc ├── bootstrap_handler.h ├── client.cc ├── connection_manager.cc ├── connection_manager.h ├── connections.h ├── message_header.h ├── messages ├── connect.h ├── connect_response.h ├── find_group.h ├── find_group_response.h ├── get_client_key.h ├── get_client_key_response.h ├── get_data.h ├── get_data_response.h ├── get_group_key.h ├── get_group_key_response.h ├── messages.h ├── messages_fwd.h ├── post.h ├── put_data.h ├── put_data_response.h └── tests │ ├── routing_connect_response_test.cc │ ├── routing_connect_test.cc │ ├── routing_find_group_response_test.cc │ ├── routing_find_group_test.cc │ ├── routing_get_data_response_test.cc │ ├── routing_get_data_test.cc │ ├── routing_post_message_test.cc │ ├── routing_put_data_response_test.cc │ └── routing_put_data_test.cc ├── peer_node.h ├── routing_node.cc ├── routing_table.cc ├── routing_table.h ├── sentinel.cc ├── sentinel.h ├── tests ├── routing_accumulator_test.cc ├── routing_bootstrap_handler_add_test.cc ├── routing_bootstrap_handler_constructor_test.cc ├── routing_bootstrap_handler_refresh_test.cc ├── routing_connections_test.cc ├── routing_sentinel_test.cc ├── routing_table_add_check_close_group_test.cc ├── routing_table_add_check_nodes_test.cc ├── routing_table_add_node_test.cc ├── routing_table_check_node_test.cc ├── routing_table_churn_test.cc ├── routing_table_drop_node_test.cc ├── routing_table_our_close_group_test.cc ├── routing_table_target_node_group_test.cc ├── routing_table_target_nodes_test.cc ├── routing_table_test.cc ├── routing_table_trivial_functions_test.cc ├── routing_utils_serialisation_functions_test.cc ├── routing_vault_network_test.cc ├── sentinel_test.cc └── utils │ ├── routing_table_unit_test.cc │ ├── routing_table_unit_test.h │ ├── test_main.cc │ ├── test_utils.cc │ └── test_utils.h ├── tools ├── commands.cc ├── commands.h ├── create_bootstrap.cc ├── key_helper.cc ├── routing_node.cc ├── shared_response.cc └── shared_response.h └── utils.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/CONTRIBUTOR -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/LICENSE -------------------------------------------------------------------------------- /MemCheck.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/MemCheck.supp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/README.md -------------------------------------------------------------------------------- /docs/argument_for_pre-sentinel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/docs/argument_for_pre-sentinel.md -------------------------------------------------------------------------------- /docs/bootstrap_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/docs/bootstrap_overview.md -------------------------------------------------------------------------------- /docs/class_diagram.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/docs/class_diagram.dia -------------------------------------------------------------------------------- /docs/group_message_delivery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/docs/group_message_delivery.md -------------------------------------------------------------------------------- /docs/group_message_handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/docs/group_message_handling.md -------------------------------------------------------------------------------- /docs/sentinel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/docs/sentinel.md -------------------------------------------------------------------------------- /docs/sequence_diagram.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/docs/sequence_diagram.dia -------------------------------------------------------------------------------- /include/maidsafe/routing/account_transfer_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/include/maidsafe/routing/account_transfer_info.h -------------------------------------------------------------------------------- /include/maidsafe/routing/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/include/maidsafe/routing/client.h -------------------------------------------------------------------------------- /include/maidsafe/routing/contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/include/maidsafe/routing/contact.h -------------------------------------------------------------------------------- /include/maidsafe/routing/endpoint_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/include/maidsafe/routing/endpoint_pair.h -------------------------------------------------------------------------------- /include/maidsafe/routing/node_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/include/maidsafe/routing/node_info.h -------------------------------------------------------------------------------- /include/maidsafe/routing/routing_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/include/maidsafe/routing/routing_node.h -------------------------------------------------------------------------------- /include/maidsafe/routing/source_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/include/maidsafe/routing/source_address.h -------------------------------------------------------------------------------- /include/maidsafe/routing/tests/routing_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/include/maidsafe/routing/tests/routing_network.h -------------------------------------------------------------------------------- /include/maidsafe/routing/tests/zero_state_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/include/maidsafe/routing/tests/zero_state_helpers.h -------------------------------------------------------------------------------- /include/maidsafe/routing/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/include/maidsafe/routing/types.h -------------------------------------------------------------------------------- /src/maidsafe/routing/account_transfer_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/account_transfer_info.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/accumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/accumulator.h -------------------------------------------------------------------------------- /src/maidsafe/routing/async_exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/async_exchange.h -------------------------------------------------------------------------------- /src/maidsafe/routing/async_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/async_queue.h -------------------------------------------------------------------------------- /src/maidsafe/routing/bootstrap_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/bootstrap_handler.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/bootstrap_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/bootstrap_handler.h -------------------------------------------------------------------------------- /src/maidsafe/routing/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/client.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/connection_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/connection_manager.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/connection_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/connection_manager.h -------------------------------------------------------------------------------- /src/maidsafe/routing/connections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/connections.h -------------------------------------------------------------------------------- /src/maidsafe/routing/message_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/message_header.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/connect.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/connect_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/connect_response.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/find_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/find_group.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/find_group_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/find_group_response.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/get_client_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/get_client_key.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/get_client_key_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/get_client_key_response.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/get_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/get_data.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/get_data_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/get_data_response.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/get_group_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/get_group_key.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/get_group_key_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/get_group_key_response.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/messages.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/messages_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/messages_fwd.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/post.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/put_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/put_data.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/put_data_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/put_data_response.h -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/tests/routing_connect_response_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/tests/routing_connect_response_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/tests/routing_connect_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/tests/routing_connect_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/tests/routing_find_group_response_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/tests/routing_find_group_response_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/tests/routing_find_group_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/tests/routing_find_group_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/tests/routing_get_data_response_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/tests/routing_get_data_response_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/tests/routing_get_data_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/tests/routing_get_data_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/tests/routing_post_message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/tests/routing_post_message_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/tests/routing_put_data_response_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/tests/routing_put_data_response_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/messages/tests/routing_put_data_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/messages/tests/routing_put_data_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/peer_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/peer_node.h -------------------------------------------------------------------------------- /src/maidsafe/routing/routing_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/routing_node.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/routing_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/routing_table.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/routing_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/routing_table.h -------------------------------------------------------------------------------- /src/maidsafe/routing/sentinel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/sentinel.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/sentinel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/sentinel.h -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_accumulator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_accumulator_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_bootstrap_handler_add_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_bootstrap_handler_add_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_bootstrap_handler_constructor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_bootstrap_handler_constructor_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_bootstrap_handler_refresh_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_bootstrap_handler_refresh_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_connections_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_connections_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_sentinel_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_sentinel_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_table_add_check_close_group_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_table_add_check_close_group_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_table_add_check_nodes_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_table_add_check_nodes_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_table_add_node_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_table_add_node_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_table_check_node_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_table_check_node_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_table_churn_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_table_churn_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_table_drop_node_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_table_drop_node_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_table_our_close_group_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_table_our_close_group_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_table_target_node_group_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_table_target_node_group_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_table_target_nodes_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_table_target_nodes_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_table_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_table_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_table_trivial_functions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_table_trivial_functions_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_utils_serialisation_functions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_utils_serialisation_functions_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/routing_vault_network_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/routing_vault_network_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/sentinel_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/sentinel_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/utils/routing_table_unit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/utils/routing_table_unit_test.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/utils/routing_table_unit_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/utils/routing_table_unit_test.h -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/utils/test_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/utils/test_main.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/utils/test_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/utils/test_utils.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tests/utils/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tests/utils/test_utils.h -------------------------------------------------------------------------------- /src/maidsafe/routing/tools/commands.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tools/commands.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tools/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tools/commands.h -------------------------------------------------------------------------------- /src/maidsafe/routing/tools/create_bootstrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tools/create_bootstrap.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tools/key_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tools/key_helper.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tools/routing_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tools/routing_node.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tools/shared_response.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tools/shared_response.cc -------------------------------------------------------------------------------- /src/maidsafe/routing/tools/shared_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/tools/shared_response.h -------------------------------------------------------------------------------- /src/maidsafe/routing/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/MaidSafe-Routing/HEAD/src/maidsafe/routing/utils.h --------------------------------------------------------------------------------