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
liblsl/src/netinterfaces.cpp Lines 89-91
LOG_F(INFO, "netif '%s' (status: %d, multicast: %d, broadcast: %d)", addr->ifa_name, addr->ifa_flags & IFF_MULTICAST, addr->ifa_flags & IFF_UP, addr->ifa_flags & IFF_BROADCAST);
I guess it should be:
LOG_F(INFO, "netif '%s' (status: %d, multicast: %d, broadcast: %d)", addr->ifa_name, addr->ifa_flags & IFF_UP, addr->ifa_flags & IFF_MULTICAST, addr->ifa_flags & IFF_BROADCAST);
The text was updated successfully, but these errors were encountered:
Of course. Could you open with the change so you get authorship credits?
Sorry, something went wrong.
Fixed bug sccn#187 in netinterfaces.cpp
5919374
Fix lsl_cpp.h exception handling (#194)
4501710
* Fixed bug #187 in netinterfaces.cpp * Fix lsl_cpp.h exception handling For error code lsl_lost_error, check_error() shall throw lost_error rather than timeout_error.
No branches or pull requests
liblsl/src/netinterfaces.cpp
Lines 89-91
I guess it should be:
The text was updated successfully, but these errors were encountered: