From 6f6a8617a16fcd9adc22a606875daead2e99e6ef Mon Sep 17 00:00:00 2001 From: Eva Wong Date: Thu, 7 May 2026 12:30:25 -0700 Subject: [PATCH] Clarify full mode MITM hook behavior --- codex-rs/network-proxy/src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codex-rs/network-proxy/src/config.rs b/codex-rs/network-proxy/src/config.rs index ab72539ea0..398ec321a3 100644 --- a/codex-rs/network-proxy/src/config.rs +++ b/codex-rs/network-proxy/src/config.rs @@ -278,8 +278,8 @@ pub enum NetworkMode { /// blocked unless MITM is enabled so the proxy can enforce method policy on inner requests. /// SOCKS5 remains blocked in limited mode. Limited, - /// Full network access: all HTTP methods are allowed. HTTPS CONNECTs are tunneled directly - /// unless MITM is needed for host-specific inner-request hooks. + /// Full network access: all HTTP methods are allowed. HTTPS CONNECTs are tunneled directly. + /// MITM hooks do not currently make full mode enter MITM. #[default] Full, }