koibumi_net/
lib.rs

1//! Types on networking including domain name and SOCKS address.
2
3#![deny(unsafe_code)]
4#![warn(missing_docs)]
5
6pub mod domain;
7mod port;
8pub mod socks;
9
10pub use crate::port::Port;