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
Hi,
I've tried to use the grammar at https://tools.ietf.org/html/rfc7644#section-3.4.2.2 with ex_abnf parser. Here is the file: filter.txt
Had to add a few definitions from other specs (like ALPHA and DIGIT at the bottom).
Here are the last commands before the crash:
iex(4)> grammar = ABNF.load_file("priv/filter.abnf") %{ ...} iex(5)> initial_state = %{} %{} iex(6)> ABNF.apply(grammar, "FILTER", "userName sw \"J\"", initial_state) eheap_alloc: Cannot allocate 1318267840 bytes of memory (of type "heap"). Crash dump is being written to: erl_crash.dump...done
Seems similar to an infinite loop?
The text was updated successfully, but these errors were encountered:
It seems that infinite recursion was allowed in the original document - corrected here: https://www.rfc-editor.org/errata/eid4690
Sorry, something went wrong.
No branches or pull requests
Hi,
I've tried to use the grammar at https://tools.ietf.org/html/rfc7644#section-3.4.2.2 with ex_abnf parser.
Here is the file: filter.txt
Had to add a few definitions from other specs (like ALPHA and DIGIT at the bottom).
Here are the last commands before the crash:
Seems similar to an infinite loop?
The text was updated successfully, but these errors were encountered: