mirror of
https://github.com/openai/codex.git
synced 2026-09-10 20:26:47 +00:00
## What changed - Accept only `http://` and `https://` gRPC endpoints for app server `--code-mode-host` connections. - Limit the standalone code-mode host to stdio and gRPC listeners. - Remove the WebSocket session provider, dual-WebSocket negotiation, transport lanes, and related dependencies and tests. - Keep coverage for shared and prewarmed gRPC hosts and reject WebSocket host URLs in CLI parsing tests. GitOrigin-RevId: 8792604e79ffd54ce776074a4dc3f7d55e63752a
9 lines
298 B
Rust
9 lines
298 B
Rust
mod grpc_session;
|
|
mod remote_session;
|
|
|
|
pub use codex_code_mode_protocol::*;
|
|
pub use grpc_session::GrpcCodeModeSessionProvider;
|
|
pub use remote_session::DisabledCodeModeSessionProvider;
|
|
pub use remote_session::ProcessOwnedCodeModeSession;
|
|
pub use remote_session::ProcessOwnedCodeModeSessionProvider;
|