| 1830 | } |
| 1831 | |
| 1832 | void SetHttpOutputConnectionsLimits(size_t softLimit, size_t hardLimit) { |
| 1833 | Y_ABORT_UNLESS( |
| 1834 | hardLimit > softLimit, |
| 1835 | "invalid output fd limits; hardLimit=%" PRISZT ", softLimit=%" PRISZT, |
| 1836 | hardLimit, softLimit); |
| 1837 | |
| 1838 | NHttps::ConnectionCache()->SetFdLimits(softLimit, hardLimit); |
| 1839 | } |
| 1840 | |
| 1841 | void SetHttpInputConnectionsLimits(size_t softLimit, size_t hardLimit) { |
| 1842 | Y_ABORT_UNLESS( |
nothing calls this directly
no test coverage detected