diff options
author | Vratko Polak <vrpolak@cisco.com> | 2024-01-18 15:14:07 +0100 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2024-01-18 15:14:07 +0100 |
commit | 3488d8cb0584600cb3e0d6adb5ce8cee2a6de989 (patch) | |
tree | d40a6d7bf9dca00699919c8a9b6783b10b9c4acd /resources/libraries | |
parent | 4ef4d31db9aaa76fd67e1c9a7a05df43dc8b067a (diff) |
feat(crc): Bump messages after 23.10 releaseoper-240122
+ Post-release rdma_create_v4 will be added next cycle.
Change-Id: Ief129b5be4a2c5d27f4674491c96c548573ecfb1
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'resources/libraries')
-rw-r--r-- | resources/libraries/python/IPsecUtil.py | 6 | ||||
-rw-r--r-- | resources/libraries/python/InterfaceUtil.py | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/resources/libraries/python/IPsecUtil.py b/resources/libraries/python/IPsecUtil.py index 29f34ed6a9..07caad03dc 100644 --- a/resources/libraries/python/IPsecUtil.py +++ b/resources/libraries/python/IPsecUtil.py @@ -1,5 +1,5 @@ -# Copyright (c) 2023 Cisco and/or its affiliates. -# Copyright (c) 2023 PANTHEON.tech s.r.o. +# Copyright (c) 2024 Cisco and/or its affiliates. +# Copyright (c) 2024 PANTHEON.tech s.r.o. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -2034,7 +2034,7 @@ class IPsecUtil: :type node: dict """ cmds = [ - u"ipsec_sa_v3_dump" + u"ipsec_sa_v4_dump" ] PapiSocketExecutor.dump_and_log(node, cmds) diff --git a/resources/libraries/python/InterfaceUtil.py b/resources/libraries/python/InterfaceUtil.py index c62592e7ec..9f023d969d 100644 --- a/resources/libraries/python/InterfaceUtil.py +++ b/resources/libraries/python/InterfaceUtil.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Cisco and/or its affiliates. +# Copyright (c) 2024 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -1321,7 +1321,7 @@ class InterfaceUtil: node, u"set logging class af_xdp level debug" ) - cmd = u"af_xdp_create_v2" + cmd = u"af_xdp_create_v3" pci_addr = Topology.get_interface_pci_addr(node, if_key) args = dict( name=InterfaceUtil.pci_to_eth(node, pci_addr), |