From 95d74efb584cded6de56cc4c72bafae9af50042e Mon Sep 17 00:00:00 2001 From: viyatb-oai Date: Wed, 3 Jun 2026 13:34:39 -0700 Subject: [PATCH] fix: introduce Noise client wiring with its caller Co-authored-by: Codex noreply@openai.com --- codex-rs/exec-server/src/noise_relay/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/codex-rs/exec-server/src/noise_relay/mod.rs b/codex-rs/exec-server/src/noise_relay/mod.rs index f406aa0d0c..265b85c04a 100644 --- a/codex-rs/exec-server/src/noise_relay/mod.rs +++ b/codex-rs/exec-server/src/noise_relay/mod.rs @@ -4,6 +4,8 @@ mod ordered_ciphertext; use crate::ExecServerError; +pub(crate) use harness::noise_harness_connection_from_websocket; + fn take_next_sequence(next_seq: &mut u32) -> Result { // Never wrap: relay sequence is the explicit ordering key for an implicit // Noise nonce. Reusing zero after u32::MAX would be ambiguous and unsafe.