A PushPromiseFrame is used to initiate a server stream. See https://httpwg.org/specs/rfc7540.html#rfc.section.6.6
| 1314 | // A PushPromiseFrame is used to initiate a server stream. |
| 1315 | // See https://httpwg.org/specs/rfc7540.html#rfc.section.6.6 |
| 1316 | type PushPromiseFrame struct { |
| 1317 | FrameHeader |
| 1318 | PromiseID uint32 |
| 1319 | headerFragBuf []byte // not owned |
| 1320 | } |
| 1321 | |
| 1322 | func (f *PushPromiseFrame) HeaderBlockFragment() []byte { |
| 1323 | f.checkValid() |
nothing calls this directly
no outgoing calls
no test coverage detected