(host: &str)
| 167 | } |
| 168 | |
| 169 | fn normalize_host(host: &str) -> String { |
| 170 | host.trim().trim_end_matches('.').to_ascii_lowercase() |
| 171 | } |
| 172 | |
| 173 | fn host_patterns_overlap(left: &str, right: &str) -> bool { |
| 174 | let left = normalize_host(left); |
no outgoing calls
no test coverage detected