A Rust library for sending raw TCP requests, with features for handling responses, managing redirects, and working with compressed data over TCP connections.
usecrate::*;/// Builder for creating and configuring TCP requests.
#[derive(Clone, Debug)]pubstructRequestBuilder{/// The TCP request being configured.
pub(crate)tcp_request: TcpRequest,
/// The built TCP request instance.
pub(crate)builder: TcpRequest,
}