diff options
| author | Daniil Baturin <daniil@vyos.io> | 2025-02-18 15:52:36 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-18 15:52:36 +0000 |
| commit | 752b400aaf5520c29726dadfc94127a06e0ad5a9 (patch) | |
| tree | ce3d9e8320ccb20fc00731d60d543d7499a86dd6 /interface-definitions/include/vpp/netlink.xml.i | |
| parent | 774f775ea4875f986a9624f1b201ee76aea0da93 (diff) | |
| parent | 7897f8d216295b32626dc4d5604349812c592921 (diff) | |
| download | vyos-1x-752b400aaf5520c29726dadfc94127a06e0ad5a9.tar.gz vyos-1x-752b400aaf5520c29726dadfc94127a06e0ad5a9.zip | |
Merge pull request #15 from sever-sever/T7168
T7168: Add IPsec XFRM netlink plugin and CLI
Diffstat (limited to 'interface-definitions/include/vpp/netlink.xml.i')
| -rw-r--r-- | interface-definitions/include/vpp/netlink.xml.i | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/interface-definitions/include/vpp/netlink.xml.i b/interface-definitions/include/vpp/netlink.xml.i new file mode 100644 index 000000000..903100d00 --- /dev/null +++ b/interface-definitions/include/vpp/netlink.xml.i @@ -0,0 +1,45 @@ +<!-- include start from vpp/netlink.xml.i --> +<node name="netlink"> + <properties> + <help>Netlink options</help> + </properties> + <children> + <leafNode name="rx-buffer-size"> + <properties> + <help>Receive buffer size</help> + <valueHelp> + <format>u32:0-4294967295</format> + <description>Receive buffer size</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-4294967295"/> + </constraint> + </properties> + </leafNode> + <leafNode name="batch-size"> + <properties> + <help>Batch size</help> + <valueHelp> + <format>u32:0-4294967295</format> + <description>Batch size</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-4294967295"/> + </constraint> + </properties> + </leafNode> + <leafNode name="batch-delay-ms"> + <properties> + <help>Batch delay</help> + <valueHelp> + <format>u32:0-4294967295</format> + <description>Batch delay (in ms)</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-4294967295"/> + </constraint> + </properties> + </leafNode> +</children> +</node> +<!-- include end --> |
