/* This file is part of DarkFi (https://dark.fi) * * Copyright (C) 2020-2024 Dyne.org foundation * * This program 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. * * This program 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 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 . */ use super::{ p2p::P2pPtr, session::{SESSION_ALL, SESSION_SEED}, }; /// Manages the tasks for the network protocol. Used by other connection /// protocols to handle asynchronous task execution across the network. /// Runs all tasks that are handed to it on an executor that has stopping /// functionality. pub mod protocol_jobs_manager; /// Protocol for version information handshake between nodes at the start /// of a connection. This is the first step when establishing a p2p conn. /// /// The version protocol starts by instantiating the protocol and creating /// a new subscription to version and version acknowledgement messages. /// Then we run the protocol. Nodes send a version message and wait for a /// version acknowledgement, while asynchronously waiting for version info /// from the other node and sending the version acknowledgement. pub mod protocol_version; pub use protocol_version::ProtocolVersion; /// Protocol for ping-pong keepalive messages. Implements ping message and /// pong response. These messages are like the network heartbeat - they are /// sent continually between nodes, to ensure each node is still alive and /// active. Ping-pong messages ensure that the network doesn't time out. pub mod protocol_ping; pub use protocol_ping::ProtocolPing; /// Protocol for address and get-address messages. Implements how nodes /// exchange connection information about other nodes on the network. /// Address and get-address messages are exchanged continually alongside /// ping-pong messages as part of a network connection. /// /// Protocol starts by creating a subscription to address and get-address /// messages. Then the protocol sends out a get-address message and waits /// for an address message. Upon receiving address messages, nodes validate /// and add the address information to their local store. pub mod protocol_address; pub use protocol_address::ProtocolAddress; /// Seed server protocol. Seed server is used when connecting to the network /// for the first time. Returns a list of peers that nodes can connect to. /// /// To start the seed protocol, we create a subscription to the address /// message, and send our address to the seed server. Then we send a /// get-address message and receive an address message. We add these addresses /// to our internal store. pub mod protocol_seed; pub use protocol_seed::ProtocolSeed; /// Base trait for implementing P2P protocols pub mod protocol_base; /// Interface for registering arbitrary P2P protocols pub mod protocol_registry; /// Register the default network protocols for a p2p instance. pub async fn register_default_protocols(p2p: P2pPtr) { let registry = p2p.protocol_registry(); registry.register(SESSION_ALL, ProtocolPing::init).await; registry.register(!SESSION_SEED, ProtocolAddress::init).await; registry.register(SESSION_SEED, ProtocolSeed::init).await; }