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
6pub(crate) mod connection_server;
7pub(crate) mod error;
8
9pub use connection_server::ProtosocketServer;
10pub use connection_server::ServerConnector;
11pub use error::Error;
12pub use error::Result;