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
wrong buffer position when parsing service supported:
self->parameters.servicesSupported[i] = buffer[bufPos + i];
I change to this: self->parameters.servicesSupported[i] = buffer[bufPos+1 + i];
The text was updated successfully, but these errors were encountered:
- MMS client: parsing of servicecsSupported in MMS init response is o…
f2d74fb
…ff by one (LIB61850-419)(#469)
27df38d
Thank you for the hint. It should be fixed now.
Sorry, something went wrong.
No branches or pull requests
wrong buffer position when parsing service supported:
self->parameters.servicesSupported[i] = buffer[bufPos + i];
I change to this:
self->parameters.servicesSupported[i] = buffer[bufPos+1 + i];
The text was updated successfully, but these errors were encountered: