(arg: &str)
| 301 | } |
| 302 | |
| 303 | fn is_outer_ssh_option_start(arg: &str) -> bool { |
| 304 | matches!(arg, "-N" | "-f" | "-o" | "-L" | "-T" | "-tt") |
| 305 | || arg.starts_with("-L") |
| 306 | || arg.starts_with("-o") |
| 307 | || arg.starts_with("-v") |
| 308 | } |
| 309 | |
| 310 | fn parse_ssh_prefix_before_proxy(args: &[&str], proxy_index: usize) -> Option<bool> { |
| 311 | let mut current = 1; |
no outgoing calls
no test coverage detected