io_proxy/http/mod.rs
1//! HTTP proxy tunnelling.
2//!
3//! [`connect`] is the client `CONNECT` handshake coroutine ([RFC 9110
4//! §9.3.6]). `CONNECT` exists only to open a proxy tunnel, so it lives in
5//! this proxy crate rather than in a general HTTP crate.
6//!
7//! [RFC 9110 §9.3.6]: https://www.rfc-editor.org/rfc/rfc9110#section-9.3.6
8
9pub mod connect;