relay-core-lib 0.3.4

[Internal] Transport and interception engine for relay-core-runtime. Use `relay-core-runtime` instead.
Documentation
//! Proxy module
//! 
//! This module handles the core proxy server logic.
//! 
//! Responsibilities:
//! - `server`: Entry point (`start_proxy`) and main connection loop (accepts connections, spawns handlers).
//! - `http`: HTTP-specific handling (request parsing, MITM, request/response modification).
//! - `tunnel`: HTTP CONNECT tunnel handling (blind TCP forwarding or MITM upgrade).
//! - `websocket`: WebSocket framing, message interception, and forwarding.
//! - `body_codec`: Handling of HTTP body streams (decompression, buffering for inspection).
//! - `tap`: Tapping body streams for UI updates.

pub mod server;
pub mod http;
pub mod http_utils;
pub mod tunnel;
pub mod websocket;
pub mod body_codec;
pub mod tap;

pub use server::start_proxy;