(header http.Header, key string, append bool)
| 37 | } |
| 38 | |
| 39 | func newHeaderValue(header http.Header, key string, append bool) HeaderValue { |
| 40 | return HeaderValue{header: header, key: strings.TrimSpace(key), append: append} |
| 41 | } |
| 42 | |
| 43 | func (h HeaderValue) modifyHeader(value string) { |
| 44 | if h.append { |
no outgoing calls