(arg: &str)
| 295 | } |
| 296 | |
| 297 | fn proxy_option_has_inline_value(arg: &str) -> bool { |
| 298 | ["--gateway=", "--token=", "--gateway-name="] |
| 299 | .iter() |
| 300 | .any(|prefix| arg.starts_with(prefix)) |
| 301 | } |
| 302 | |
| 303 | fn is_outer_ssh_option_start(arg: &str) -> bool { |
| 304 | matches!(arg, "-N" | "-f" | "-o" | "-L" | "-T" | "-tt") |
no outgoing calls
no test coverage detected