(host: &str)
| 64 | } |
| 65 | |
| 66 | fn is_link_local_or_metadata_host(host: &str) -> bool { |
| 67 | is_link_local(host) || is_known_metadata_hostname(host) |
| 68 | } |
| 69 | |
| 70 | /// Run all four formal queries against the model and emit one finding |
| 71 | /// per category that has at least one path. |
no test coverage detected