Merge branch 'master' into pmtu

This commit is contained in:
Quentin McGaw
2025-10-17 00:17:45 +00:00
28 changed files with 1505 additions and 665 deletions

View File

@@ -100,3 +100,13 @@ type CmdStarter interface {
stdoutLines, stderrLines <-chan string,
waitError <-chan error, startErr error)
}
type HealthChecker interface {
SetConfig(tlsDialAddr string, icmpTarget netip.Addr)
Start(ctx context.Context) (runError <-chan error, err error)
Stop() error
}
type HealthServer interface {
SetError(err error)
}