(command: &str, port: u16, sandbox_id: Option<&str>)
| 229 | /// Test-only wrapper for flat command lines. |
| 230 | #[cfg(test)] |
| 231 | fn command_matches_ssh_forward(command: &str, port: u16, sandbox_id: Option<&str>) -> bool { |
| 232 | let args = command.split_whitespace().collect::<Vec<_>>(); |
| 233 | args_match_ssh_forward(&args, port, sandbox_id) |
| 234 | } |
| 235 | |
| 236 | fn find_proxy_command_match(args: &[&str], sandbox_id: Option<&str>) -> Option<ProxyCommandMatch> { |
| 237 | for (index, arg) in args.iter().enumerate().skip(1) { |
nothing calls this directly
no test coverage detected