xmr-btc-swap/swap/src/network/transport.rs

44 lines
1.2 KiB
Rust
Raw Normal View History

use anyhow::Result;
use libp2p::{
core::{
identity,
muxing::StreamMuxerBox,
2020-10-22 13:39:18 +11:00
transport::Boxed,
upgrade::{SelectUpgrade, Version},
2020-11-03 14:54:36 +11:00
Transport,
},
2020-10-22 13:39:18 +11:00
dns::DnsConfig,
mplex::MplexConfig,
2020-10-22 13:39:18 +11:00
noise::{self, NoiseConfig, X25519Spec},
yamux, PeerId,
};
2020-10-26 16:55:53 +11:00
/// Builds a libp2p transport without Tor with the following features:
/// - TcpConnection
/// - DNS name resolution
/// - authentication via noise
/// - multiplexing via yamux or mplex
pub fn build(id_keys: identity::Keypair) -> Result<SwapTransport> {
2020-10-26 16:55:53 +11:00
use libp2p::tcp::TokioTcpConfig;
let dh_keys = noise::Keypair::<X25519Spec>::new().into_authentic(&id_keys)?;
let noise = NoiseConfig::xx(dh_keys).into_authenticated();
let tcp = TokioTcpConfig::new().nodelay(true);
let dns = DnsConfig::new(tcp)?;
let transport = dns
.upgrade(Version::V1)
.authenticate(noise)
.multiplex(SelectUpgrade::new(
yamux::YamuxConfig::default(),
MplexConfig::new(),
))
.map(|(peer, muxer), _| (peer, StreamMuxerBox::new(muxer)))
.boxed();
Ok(transport)
}
2020-10-26 16:55:53 +11:00
2020-10-22 13:39:18 +11:00
pub type SwapTransport = Boxed<(PeerId, StreamMuxerBox)>;