refactor(#1865): rename agent_server module to socket_server

Pure rename ahead of the agent+manager server consolidation: the
per-agent socket dispatcher already hosts the shared dispatch and all
lifecycle handlers, and will absorb the manager-only handlers next, so
`agent_server` becomes a misnomer. No logic change — git mv plus a
mechanical `agent_server` -> `socket_server` rename across refs.
This commit is contained in:
atlas 2026-06-22 12:30:19 +02:00 committed by mara
commit a053d33184
8 changed files with 14 additions and 14 deletions

View file

@ -15,7 +15,7 @@
//!
//! Same process-singleton handle pattern as `build_logs`: installed once
//! at `Coordinator::open`, fetched via [`global`] so the recording sites
//! (e.g. `agent_server::handle_restart_infra`) don't have to thread an
//! (e.g. `socket_server::handle_restart_infra`) don't have to thread an
//! `Arc<AuditLog>` through every call path. Recording is best-effort: a
//! sqlite blip must never fail the underlying privileged action.