UniqueURLs contains unique URLs with non-URL exceptions.
| 27 | // UniqueURLs contains unique URLs |
| 28 | // with non-URL exceptions. |
| 29 | type UniqueURLs struct { |
| 30 | Values map[string]struct{} |
| 31 | uss []url.URL |
| 32 | Allowed map[string]struct{} |
| 33 | } |
| 34 | |
| 35 | // Set parses a command line set of URLs formatted like: |
| 36 | // http://127.0.0.1:2380,http://10.1.1.2:80 |
nothing calls this directly
no outgoing calls
no test coverage detected