(v []byte)
| 401 | func (h2f *Framer) writeByte(v byte) { h2f.wbuf = append(h2f.wbuf, v) } |
| 402 | |
| 403 | func (h2f *Framer) writeBytes(v []byte) { h2f.wbuf = append(h2f.wbuf, v...) } |
| 404 | |
| 405 | func (h2f *Framer) writeUint16(v uint16) { h2f.wbuf = append(h2f.wbuf, byte(v>>8), byte(v)) } |
| 406 |
no outgoing calls
no test coverage detected