1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//! Daemon liveness probe configuration and spec types.
//!
//! Used by DaemonHarness-class transports (e.g. OpenClaw) to verify the
//! daemon is alive before spawning a client process.
use Duration;
/// Probe configuration for checking daemon liveness before spawning a client.
///
/// A raw TCP connection is attempted to `host:port` within `timeout_ms`
/// milliseconds. If the handshake succeeds, the daemon is considered running.
/// Full daemon specification: liveness probe + client-side spawn requirements.
///
/// Carried by DaemonHarness-class builders so the transport layer knows how
/// to verify the daemon and what error message to surface on failure.