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
I'm getting the following error from the receive() method when running on Windows:
ERROR: [Errno 10035] A non-blocking socket operation could not be completed immediately
My understanding is that 10035 indicates the end of data. The error does not occur if I make the following change in _read_all_from_socket():
if e.errno == 11: to if e.errno == 11 or e.errno ==10035
if e.errno == 11:
if e.errno == 11 or e.errno ==10035
The text was updated successfully, but these errors were encountered:
Thank you for that! I have incorporated your suggested fix and acknowledged you in this commit here: bb3e19a
multiping 1.0.6 has been created and uploaded to pypi.
Sorry, something went wrong.
Should take care of issue #3: IPPROTO_ICMPV6 undefined on Windows
6fe8d5e
No branches or pull requests
I'm getting the following error from the receive() method when running on Windows:
My understanding is that 10035 indicates the end of data. The error does not occur if I make the following change in _read_all_from_socket():
if e.errno == 11:
to
if e.errno == 11 or e.errno ==10035
The text was updated successfully, but these errors were encountered: