We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
close
ECONNRESET
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
On FreeBSD, closing a socket can return ECONNRESET. See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=159179 and python/cpython#2565.
Eio should ignore this error automatically. This is how Python handles it:
https://github.com/python/cpython/blob/15d6506d175780bb29e5fcde654e3860408aa93e/Modules/socketmodule.c#L6215-L6218
https://man.freebsd.org/cgi/man.cgi?query=close&sektion=2 says:
In case of any error except EBADF, the supplied file descriptor is deallocated and therefore is no longer valid.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
On FreeBSD, closing a socket can return
ECONNRESET
. See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=159179 and python/cpython#2565.Eio should ignore this error automatically. This is how Python handles it:
https://github.com/python/cpython/blob/15d6506d175780bb29e5fcde654e3860408aa93e/Modules/socketmodule.c#L6215-L6218
https://man.freebsd.org/cgi/man.cgi?query=close&sektion=2 says:
The text was updated successfully, but these errors were encountered: