We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The windows implementation clobbers the error returned from SetsockoptInt with the result of the Control method call.
go-reuseport/control_windows.go
Line 10 in 194b8a8
The unix implementation doesn't handle the error returned from the Control method call at all.
go-reuseport/control_unix.go
Line 13 in 194b8a8
The text was updated successfully, but these errors were encountered:
Want to submit a patch?
Sorry, something went wrong.
Fix error discarding and clobbering in Control funcs
3e8ab90
Both sockopt and control errors can't exist at the same time, but control errors should occur first, and so are given precedence. Fixes libp2p#101
fix error handling when setting socket options (#102)
28dc065
Both sockopt and control errors can't exist at the same time, but control errors should occur first, and so are given precedence. Fixes #101
Successfully merging a pull request may close this issue.
The windows implementation clobbers the error returned from SetsockoptInt with the result of the Control method call.
go-reuseport/control_windows.go
Line 10 in 194b8a8
The unix implementation doesn't handle the error returned from the Control method call at all.
go-reuseport/control_unix.go
Line 13 in 194b8a8
The text was updated successfully, but these errors were encountered: