-
Notifications
You must be signed in to change notification settings - Fork 995
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to read current connection limits #2809
Comments
Perhaps we should report the limit with each new connection? |
I would welcome any patches for this. In case anyone is looking into it, I am currently working on a proposal for generic connection management, i.e. the ability for users to implement their own connection management (e.g. limiting) mechanism. I have not yet published this work. See also #2118 (comment) |
Connection limits are now a completely standalone component implemented as If desired, patches to expose |
Currently it is possible to get to the
ConnectionLimits
struct for the current swarm, but it is not possible to read the actual limits, which would be useful to for components that want to check how close to the limit the current state is.Bonus: It might be nice if there were some methods like
has_reached_outgoing_connection_limit
for more explicit checks.The text was updated successfully, but these errors were encountered: