(v uint32)
| 405 | func (h2f *Framer) writeUint16(v uint16) { h2f.wbuf = append(h2f.wbuf, byte(v>>8), byte(v)) } |
| 406 | |
| 407 | func (h2f *Framer) writeUint32(v uint32) { |
| 408 | h2f.wbuf = append(h2f.wbuf, byte(v>>24), byte(v>>16), byte(v>>8), byte(v)) |
| 409 | } |
| 410 | |
| 411 | const ( |
| 412 | minMaxFrameSize = 1 << 14 |
no outgoing calls
no test coverage detected