A Rust library for sending raw TCP requests, with features for handling responses, managing redirects, and working with compressed data over TCP connections.
//! tcp-request
//!//! A Rust library for sending raw TCP requests, with features
//! for handling responses, managing redirects, and working
//! with compressed data over TCP connections.
modcommon;modrequest;modresponse;pubuse{request::*,response::*};usecommon::*;usestd::{error::Error as StdError,fmt::Debug,fmt::{self, Display},io::{Read, Write},net::TcpStream,sync::{Arc, RwLock},time::Duration,};