protosocket_server/
lib.rs

1//! Conveniences for writing protosocket servers.
2//!
3//! See example-telnet for the simplest full example of the entire workings,
4//! or example-proto for an example of how to use this crate with protocol buffers.
5
6#![deny(missing_docs)]
7
8pub(crate) mod connection_server;
9pub(crate) mod error;
10
11pub use connection_server::ProtosocketServer;
12pub use connection_server::ProtosocketServerConfig;
13pub use connection_server::ProtosocketSocketConfig;
14pub use connection_server::ServerConnector;
15pub use error::Error;
16pub use error::Result;