//! Pluggable network transport.
//!
//! This module lets callers override how `rsurl` reaches the network. The
//! central abstraction is the [`Connector`] trait: given a logical
//! `host:port`, it returns a connected, plaintext [`NetStream`] which the
//! protocol backends then drive (wrapping it in TLS when the scheme requires
//! it). The default [`DirectConnector`] dials TCP directly; the built-in proxy
//! connectors route through HTTP CONNECT, HTTPS-to-proxy CONNECT, or
//! SOCKS4/4a/5/5h. Build one from a curl-style proxy URL with
//! [`connector_from_proxy_url`], or implement [`Connector`] yourself for a
//! fully custom transport.
pub
pub use Client;
pub use NetConfig;
pub use UnixConnector;
pub use ;
pub use NetStream;
pub use UdpProxy;