pub fn validate_standalone_socket_path(path: &Path) -> Result<(), String>Expand description
Validate a StandaloneConfig::socket_path.
Rules:
- Absolute path (starts with
/). - Lives under
/run/(rejects/etc/...,/tmp/..., etc. — pins the socket to a tmpfs path predictably writable by the standalone daemon). Runtime adapters can explicitly bypass this restriction for development. - No
..segments anywhere in the path.