protosocket-server 1.0.1

Message-oriented nonblocking tcp stream - server tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Conveniences for writing protosocket servers.
//!
//! See example-telnet for the simplest full example of the entire workings,
//! or example-proto for an example of how to use this crate with protocol buffers.

#![deny(missing_docs)]

pub(crate) mod connection_server;
pub(crate) mod error;

pub use connection_server::ProtosocketServer;
pub use connection_server::ProtosocketServerConfig;
pub use connection_server::ProtosocketSocketConfig;
pub use connection_server::ServerConnector;
pub use error::Error;
pub use error::Result;