MaxHeaderListSizeServerOption is a ServerOption that sets the max (uncompressed) size of header list that the server is prepared to accept.
| 595 | // MaxHeaderListSizeServerOption is a ServerOption that sets the max |
| 596 | // (uncompressed) size of header list that the server is prepared to accept. |
| 597 | type MaxHeaderListSizeServerOption struct { |
| 598 | MaxHeaderListSize uint32 |
| 599 | } |
| 600 | |
| 601 | func (o MaxHeaderListSizeServerOption) apply(so *serverOptions) { |
| 602 | so.maxHeaderListSize = &o.MaxHeaderListSize |
nothing calls this directly
no outgoing calls
no test coverage detected