/* src/lib.rs */
//! # netsem
//!
//! `netsem` (Network Semantics) provides pure, synchronous utilities for parsing,
//! classifying, and validating IP addresses, ports, and socket addresses.
//!
//! It offers a strict separation between logic/validation and OS-level operations.
//! OS-level checks (binding, connecting) are available only via the `check` feature.
/// Error types and handling.
/// IP address parsing and classification.
/// Port validation, classification, and OS-level checks.
/// Socket address validation and binding checks.
// Re-export core types for convenience
pub use NetSemError;
pub use ;
pub use ;
pub use ;
pub use validate_socket_addr;