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
Should be
if (!directoryAsdu.AddInformationObject (io)) { masterConnection.SendASDU(directoryAsdu); directoryAsdu = new ASDU(masterConnection.GetApplicationLayerParameters(), cot, false, false, 0, currentCa, true); directoryAsdu.AddInformationObject(io); }
The text was updated successfully, but these errors were encountered:
- file service: fixed problem with large directories (#3)
c1c86f5
Thanks for the hint! I changed the code.
Sorry, something went wrong.
if (!directoryAsdu.AddInformationObject (io) == false) Remove the negation or comparison on the false.
if (!directoryAsdu.AddInformationObject (io) == false)
Yes. That's a stupid typo. Thanks for hint!
No branches or pull requests
Should be
The text was updated successfully, but these errors were encountered: