(to, from http.Header)
| 536 | } |
| 537 | |
| 538 | func copyHeader(to, from http.Header) { |
| 539 | for k, v := range from { |
| 540 | to[http.CanonicalHeaderKey(k)] = v |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | func copyHeaderExcluding(to, from http.Header, excludeHeaders map[string]bool) { |
| 545 | for k, v := range from { |
no outgoing calls
no test coverage detected
searching dependent graphs…