-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
Handle set elements that are structured prefixes #8
Handle set elements that are structured prefixes #8
Conversation
// - a prefix, expressed as an object: | ||
// { | ||
// "prefix": { | ||
// "addr": "192.168.0.0", | ||
// "len": 16, | ||
// } | ||
// } | ||
// |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see this is documented https://manpages.debian.org/testing/libnftables1/libnftables-json.5.en.html
PREFIX
{ "prefix": {
"addr": EXPRESSION,
"len": NUMBER
}}
Construct an IPv4 or IPv6 prefix consisting of address part in addr and prefix length in len.
64b7f64
to
ed2cf47
Compare
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: caseydavenport, danwinship The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
For sets that use the "interval" flag, it is possible to include prefixes as elements. In JSON representation, these are returned like so:
This change updates ListElements to return these as strings in CIDR notation to match how they are represented when creating the element.