| 19 | // https://tools.ietf.org/html/draft-ietf-httpbis-header-structure-09#section-3.4 |
| 20 | type ParameterisedList []ParameterisedIdentifier |
| 21 | type ParameterisedIdentifier struct { |
| 22 | Label Token |
| 23 | Params Parameters |
| 24 | } |
| 25 | type Parameters map[Key]Item |
| 26 | |
| 27 | // Item is one of these: |
nothing calls this directly
no outgoing calls
no test coverage detected