useanyhow::Result;usesuper::{BoxStream, Target};/// RAW proxy: no handshake, the stream is forwarded as-is.
////// This is a no-op that returns the stream unchanged, used when the proxy
/// is configured as `raw` type.
pub async fnconnect(stream: BoxStream, _target:&Target)->Result<BoxStream>{Ok(stream)}