[V1] framework/packet:add more gtp module suppoprt

Message ID 20230629182859.296000-1-zhiminx.huang@intel.com (mailing list archive)
State New
Headers
Series [V1] framework/packet:add more gtp module suppoprt |

Checks

Context Check Description
ci/Intel-dts-format-test success Testing OK
ci/Intel-dts-pylama-test success Testing OK
ci/Intel-dts-suite-test success Testing OK

Commit Message

Huang, ZhiminX June 29, 2023, 6:28 p.m. UTC
  according to test suite of ice_advanced_iavf_rss_gtpu,need more gtp
module support,add required modules to the framework.

Signed-off-by: Zhimin Huang <zhiminx.huang@intel.com>
---
 framework/packet.py | 9 +++++++++
 1 file changed, 9 insertions(+)
  

Patch

diff --git a/framework/packet.py b/framework/packet.py
index 2c16e7cb..356fdc62 100644
--- a/framework/packet.py
+++ b/framework/packet.py
@@ -50,6 +50,15 @@  scapy_modules_required = {
         "GTPPDUSessionContainer",
         "GTPEchoRequest",
         "GTPEchoResponse",
+        "GTPHeader",
+        "GTPCreatePDPContextRequest",
+        "GTPCreatePDPContextResponse",
+        "GTPUpdatePDPContextRequest",
+        "GTPUpdatePDPContextResponse",
+        "GTPDeletePDPContextRequest",
+        "GTPDeletePDPContextResponse",
+        "GTPPDUNotificationRequest",
+        "GTPSupportedExtensionHeadersNotification",
     ],
     "scapy.contrib.lldp": ["LLDPDU", "LLDPDUManagementAddress"],
     "scapy.contrib.pfcp": ["PFCP"],