//! Vendored proxy logic from rust-rpxy.
//!
//! This module contains adapted code from rpxy-lib for the core proxy functionality:
//! - HTTP/1.1 and HTTP/2 request handling
//! - Upstream forwarding
//! - Load balancing (round-robin, random, sticky)
//! - Header manipulation (X-Forwarded-*, Host rewriting)
//! - Hyper body types and utilities
//!
//! The original code is from: https://github.com/junkurihara/rust-rpxy
//! Licensed under MIT License.
pub use ;
pub use ForwarderClient;
pub use MessageHandler;
pub use ProxyService;
pub use ;