Path of the Unix domain socket the driver will listen on.
(vm_config: &VmComputeConfig)
| 253 | |
| 254 | /// Path of the Unix domain socket the driver will listen on. |
| 255 | pub fn compute_driver_socket_path(vm_config: &VmComputeConfig) -> PathBuf { |
| 256 | vm_config |
| 257 | .state_dir |
| 258 | .join(COMPUTE_DRIVER_SOCKET_RUN_DIR) |
| 259 | .join(COMPUTE_DRIVER_SOCKET_NAME) |
| 260 | } |
| 261 | |
| 262 | #[cfg(unix)] |
| 263 | fn prepare_compute_driver_socket_path( |
no outgoing calls