(endpoint: &str, remote: Option<&str>, local: bool)
| 781 | } |
| 782 | |
| 783 | fn plaintext_gateway_is_remote(endpoint: &str, remote: Option<&str>, local: bool) -> bool { |
| 784 | if local { |
| 785 | return false; |
| 786 | } |
| 787 | if remote.is_some() { |
| 788 | return true; |
| 789 | } |
| 790 | !is_loopback_gateway_endpoint(endpoint) |
| 791 | } |
| 792 | |
| 793 | fn plaintext_gateway_metadata( |
| 794 | name: &str, |
no test coverage detected