(bufV []byte, value string)
| 3401 | } |
| 3402 | |
| 3403 | func initHeaderValueString(bufV []byte, value string) []byte { |
| 3404 | return initHeaderValueBytes(bufV, s2b(value)) |
| 3405 | } |
| 3406 | |
| 3407 | func initHeaderValueBytes(bufV, value []byte) []byte { |
| 3408 | // https://tools.ietf.org/html/rfc7230#section-3.2.4 |
no test coverage detected
searching dependent graphs…