multistream 0.1.0

Provides simple abstractions for tcp/tls/unix socket servers and clients in tokio
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Multistream provides some simple abstrations for streaming client and
//! servers. Check out [the examples](https://github.com/KennethWilke/multistream/tree/main/examples/)
//! to help you get started.

mod client;
mod server;

pub use client::*;
pub use server::*;

const DEFAULT_BUFFER_SIZE: usize = 8 * 1024;