|
5 | 5 | ////
|
6 | 6 | //// This module does not implement a HTTP client or HTTP server, but it can be used as a base for them.
|
7 | 7 |
|
8 |
| -import gleam/dynamic.{type DecodeError, type Dynamic, DecodeError} |
9 |
| -import gleam/string |
10 | 8 | import gleam/bit_array
|
11 |
| -import gleam/result |
12 |
| -import gleam/list |
13 | 9 | import gleam/bool
|
| 10 | +import gleam/dynamic.{type DecodeError, type Dynamic, DecodeError} |
| 11 | +import gleam/list |
| 12 | +import gleam/result |
| 13 | +import gleam/string |
14 | 14 |
|
15 | 15 | /// HTTP standard method as defined by [RFC 2616](https://tools.ietf.org/html/rfc2616),
|
16 | 16 | /// and PATCH which is defined by [RFC 5789](https://tools.ietf.org/html/rfc5789).
|
@@ -112,6 +112,7 @@ pub fn method_from_dynamic(value: Dynamic) -> Result(Method, List(DecodeError))
|
112 | 112 |
|
113 | 113 | pub type MultipartHeaders {
|
114 | 114 | /// The headers for the part have been fully parsed.
|
| 115 | + /// Header keys are all lowercase. |
115 | 116 | MultipartHeaders(
|
116 | 117 | headers: List(Header),
|
117 | 118 | /// The remaining content that has not yet been parsed. This will contain
|
@@ -270,8 +271,7 @@ fn parse_headers_after_prelude(
|
270 | 271 | // compiler support this.
|
271 | 272 |
|
272 | 273 | use <- bool.guard(
|
273 |
| - when: dsize |
274 |
| - < required_size, |
| 274 | + when: dsize < required_size, |
275 | 275 | return: more_please_headers(parse_headers_after_prelude(_, boundary), data),
|
276 | 276 | )
|
277 | 277 |
|
@@ -561,7 +561,7 @@ fn do_method_from_dynamic(a: Dynamic) -> Result(Method, nil)
|
561 | 561 | @external(javascript, "../gleam_http_native.mjs", "decode_method")
|
562 | 562 | fn do_method_from_dynamic(a: Dynamic) -> Result(Method, Nil)
|
563 | 563 |
|
564 |
| -/// A HTTP header is a key-value pair. Header keys should be all lowercase |
| 564 | +/// A HTTP header is a key-value pair. Header keys must be all lowercase |
565 | 565 | /// characters.
|
566 | 566 | pub type Header =
|
567 | 567 | #(String, String)
|
0 commit comments