Implement the headless SSH server

This commit is contained in:
2026-07-19 20:35:02 +02:00
parent 92a942d52f
commit 45cb0cd502
26 changed files with 4226 additions and 55 deletions

View File

@@ -88,6 +88,13 @@ impl CoreHost {
self
}
/// Attach the application-wide task service for remote and alternate UI
/// sessions that are not themselves running inside one managed task.
pub fn with_task_manager(mut self, manager: Arc<TaskManager>) -> Self {
self.task_manager = Some(manager);
self
}
pub fn with_offline_mode(mut self, offline_mode: bool) -> Self {
self.offline_mode = offline_mode;
self