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
out_event
sendto
The current implementation of udp_engine triggers an assert when sendto fails. This makes it hard to recover from the error.
libzmq/src/udp_engine.cpp
Lines 392 to 403 in 6092431
I'm not sure what's the proper way to address this issue given that out_event returns void.
void
I'm having the issue when binding a multicast RADIO to an interface that doesn't have the link yet. It causes my python app to abort brutally.
Abort
Return an error to let the calling code handle the situation
The text was updated successfully, but these errors were encountered:
sendo
I think this is the same as #2862 and yes it should get fixed
Sorry, something went wrong.
No branches or pull requests
Issue description
The current implementation of udp_engine triggers an assert when
sendto
fails. This makes it hard to recover from the error.libzmq/src/udp_engine.cpp
Lines 392 to 403 in 6092431
I'm not sure what's the proper way to address this issue given that
out_event
returnsvoid
.Environment
Minimal test code / Steps to reproduce the issue
I'm having the issue when binding a multicast RADIO to an interface that doesn't have the link yet. It causes my python app to abort brutally.
What's the actual result? (include assertion message & call stack if applicable)
Abort
What's the expected result?
Return an error to let the calling code handle the situation
The text was updated successfully, but these errors were encountered: