(dst, src http.Header)
| 78 | } |
| 79 | |
| 80 | func copyHeader(dst, src http.Header) { |
| 81 | for k, vv := range src { |
| 82 | for _, v := range vv { |
| 83 | dst.Add(k, v) |
| 84 | } |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | // Hop-by-hop headers. These are removed when sent to the backend. |
| 89 | // As of RFC 7230, hop-by-hop headers are required to appear in the |
no test coverage detected