dumbpipe 0.37.0

A cli tool to pipe data over the network, with NAT hole punching
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// The ALPN for dumbpipe.
///
/// It is basically just passing data through 1:1, except that the connecting
/// side will send a fixed size handshake to make sure the stream is created.
pub const ALPN: &[u8] = b"DUMBPIPEV0";

/// The handshake to send when connecting.
///
/// The side that calls open_bi() first must send this handshake, the side that
/// calls accept_bi() must consume it.
pub const HANDSHAKE: [u8; 5] = *b"hello";

pub use iroh_tickets::endpoint::EndpointTicket;