(
socket_path: &Path,
handshake: &DaemonHandshake,
replay_line: Option<String>,
)
| 943 | |
| 944 | #[cfg(unix)] |
| 945 | pub async fn proxy_stdio_to_daemon( |
| 946 | socket_path: &Path, |
| 947 | handshake: &DaemonHandshake, |
| 948 | replay_line: Option<String>, |
| 949 | ) -> Result<()> { |
| 950 | let mut transport = StdioTransport::new(); |
| 951 | proxy_transport_to_daemon(socket_path, handshake, replay_line, &mut transport).await |
| 952 | } |
| 953 | |
| 954 | #[cfg(unix)] |
| 955 | pub async fn proxy_transport_to_daemon( |
no test coverage detected