MaxHeaderListSizeDialOption is a DialOption that specifies the maximum (uncompressed) size of header list that the client is prepared to accept.
| 688 | // MaxHeaderListSizeDialOption is a DialOption that specifies the maximum |
| 689 | // (uncompressed) size of header list that the client is prepared to accept. |
| 690 | type MaxHeaderListSizeDialOption struct { |
| 691 | MaxHeaderListSize uint32 |
| 692 | } |
| 693 | |
| 694 | func (o MaxHeaderListSizeDialOption) apply(do *dialOptions) { |
| 695 | do.copts.MaxHeaderListSize = &o.MaxHeaderListSize |
nothing calls this directly
no outgoing calls
no test coverage detected