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
Two incorrect error enum strings in scripts/consts.zeek:
[57] = "Reject Invalid Tag" , [58] = "Reject Network Down" ,
should not include the Reject . They are correctly:
Reject
[57] = "Invalid Tag" , [58] = "Network Down" ,
The text was updated successfully, but these errors were encountered:
While updating that table, the inconsistent initial capitalization in:
[15] = "Key generation Error", [20] = "No Space To write Property", [23] = "object Deletion Not Permitted", [24] = "object Identifier Already Exists", [25] = "operational Problem", [45] = "optional Functionality Not Supported", [53] = "Abort Preempted By higher Priority Task" , [75] = "log Buffer Full", [76] = "logged Value Purged", [81] = "list Element Not Found", [127] = "Abort window Size Out Of Range",
could also be corrected.
Sorry, something went wrong.
NothinRandom
No branches or pull requests
Two incorrect error enum strings in scripts/consts.zeek:
should not include the
Reject
. They are correctly:The text was updated successfully, but these errors were encountered: