| 2031 | } |
| 2032 | |
| 2033 | void SetHttp2OutputConnectionsLimits(size_t softLimit, size_t hardLimit) { |
| 2034 | HttpConnManager()->SetLimits(softLimit, hardLimit); |
| 2035 | } |
| 2036 | |
| 2037 | void SetHttp2InputConnectionsLimits(size_t softLimit, size_t hardLimit) { |
| 2038 | HttpInConnLimits()->SetSoft(softLimit); |
nothing calls this directly
no test coverage detected