diff options
author | Christian Breunig <christian@breunig.cc> | 2023-11-11 13:05:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-11 13:05:42 +0100 |
commit | e5a53d48cf149facb30410c25e55ab3780205186 (patch) | |
tree | 0ea5b052b18f9db57fc65981950529ef478e8298 /interface-definitions/include/firewall/state.xml.i | |
parent | 2ca0ac6ac420b5904d87344db80840c640d2cde9 (diff) | |
parent | c4409d6a4e11bf2acc7b5b96888e2c471c4559e5 (diff) | |
download | vyos-1x-e5a53d48cf149facb30410c25e55ab3780205186.tar.gz vyos-1x-e5a53d48cf149facb30410c25e55ab3780205186.zip |
Merge pull request #2471 from nicolas-fort/T5729
T5729: firewall: switch to valueless in
Diffstat (limited to 'interface-definitions/include/firewall/state.xml.i')
-rw-r--r-- | interface-definitions/include/firewall/state.xml.i | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/interface-definitions/include/firewall/state.xml.i b/interface-definitions/include/firewall/state.xml.i new file mode 100644 index 000000000..dee9722e5 --- /dev/null +++ b/interface-definitions/include/firewall/state.xml.i @@ -0,0 +1,30 @@ +<!-- include start from firewall/state.xml.i --> +<leafNode name="state"> + <properties> + <help>Session state</help> + <completionHelp> + <list>established invalid new related</list> + </completionHelp> + <valueHelp> + <format>established</format> + <description>Established state</description> + </valueHelp> + <valueHelp> + <format>invalid</format> + <description>Invalid state</description> + </valueHelp> + <valueHelp> + <format>new</format> + <description>New state</description> + </valueHelp> + <valueHelp> + <format>related</format> + <description>Related state</description> + </valueHelp> + <constraint> + <regex>(established|invalid|new|related)</regex> + </constraint> + <multi/> + </properties> +</leafNode> +<!-- include end --> |