diff options
Diffstat (limited to 'cli/http_util.rs')
-rw-r--r-- | cli/http_util.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/http_util.rs b/cli/http_util.rs index 34140402d..05074fa4d 100644 --- a/cli/http_util.rs +++ b/cli/http_util.rs @@ -79,6 +79,9 @@ fn resolve_url_from_location(base_url: &Url, location: &str) -> Url { } } +// TODO(ry) HTTP headers are not unique key, value pairs. There may be more than +// one header line with the same key. This should be changed to something like +// Vec<(String, String)> pub type HeadersMap = HashMap<String, String>; #[derive(Debug, PartialEq)] |