(dst, src http.Header)
| 96 | } |
| 97 | |
| 98 | func copyHeader(dst, src http.Header) { |
| 99 | for k, vv := range src { |
| 100 | for _, v := range vv { |
| 101 | dst.Add(k, v) |
| 102 | } |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | // Hop-by-hop headers. These are removed when sent to the backend. |
| 107 | // http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html |