mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-06 23:06:20 +01:00
2acbbb8026
- ensure_supervisor_running now runs as a background task driven by tokio::spawn, so the tunnel control server and command-shell can start accepting connections immediately instead of waiting for the supervisor to come up. - handle_serve (and the agent-host port forwarder) await the shared future on demand and mix the bridge endpoint into the per-request code_server_args. Supervisor failure is logged as a warning so editing and the extension host keep working; the renderer just misses agentHostProxy. - This eliminates the startup stall that was sporadically tripping remote SSH's 450ms command-shell ready timeout. Fixes #317714 (Commit message generated by Copilot)
47 lines
1.3 KiB
Rust
47 lines
1.3 KiB
Rust
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
pub mod code_server;
|
|
pub mod dev_tunnels;
|
|
pub mod legal;
|
|
pub mod local_forwarding;
|
|
pub mod paths;
|
|
pub mod protocol;
|
|
pub mod shutdown_signal;
|
|
pub mod singleton_client;
|
|
pub mod singleton_server;
|
|
|
|
pub mod agent_host;
|
|
pub mod agent_host_metadata;
|
|
mod challenge;
|
|
mod control_server;
|
|
mod nosleep;
|
|
#[cfg(target_os = "linux")]
|
|
mod nosleep_linux;
|
|
#[cfg(target_os = "macos")]
|
|
mod nosleep_macos;
|
|
#[cfg(target_os = "windows")]
|
|
mod nosleep_windows;
|
|
mod port_forwarder;
|
|
mod server_bridge;
|
|
mod server_multiplexer;
|
|
mod service;
|
|
#[cfg(target_os = "linux")]
|
|
mod service_linux;
|
|
#[cfg(target_os = "macos")]
|
|
mod service_macos;
|
|
#[cfg(target_os = "windows")]
|
|
mod service_windows;
|
|
mod socket_signal;
|
|
mod wsl_detect;
|
|
|
|
pub use control_server::{
|
|
serve, serve_stream, AuthRequired, Next, ServeStreamParams, SharedActiveAgentHost,
|
|
};
|
|
pub use nosleep::SleepInhibitor;
|
|
pub use service::{
|
|
create_service_manager, ServiceContainer, ServiceManager, SERVICE_LOG_FILE_NAME,
|
|
};
|