From 0a07d296d453c11a31356844a0aae140fe012324 Mon Sep 17 00:00:00 2001 From: Luc Provoost Date: Fri, 11 Feb 2022 19:55:41 +0100 Subject: Fix issues when handling unkown ipv6 packets In order to fix this, a new parameter has been introduced: "ipv6 mask length". This can be specified in the port section of the config file. The default value is 8 (bytes). Signed-off-by: Luc Provoost Change-Id: I88b0b3906cc247ae5653ad59b8aa425f0cddf347 --- VNFs/DPPD-PROX/defaults.c | 1 + 1 file changed, 1 insertion(+) (limited to 'VNFs/DPPD-PROX/defaults.c') diff --git a/VNFs/DPPD-PROX/defaults.c b/VNFs/DPPD-PROX/defaults.c index 2156a74f..b93b7275 100644 --- a/VNFs/DPPD-PROX/defaults.c +++ b/VNFs/DPPD-PROX/defaults.c @@ -222,6 +222,7 @@ void set_port_defaults(void) prox_port_cfg[i].tx_ring[0] = '\0'; prox_port_cfg[i].mtu = PROX_MTU; prox_port_cfg[i].dpdk_mapping = NO_VDEV_PORT; + prox_port_cfg[i].v6_mask_length = 8; // CRC_STRIP becoming the default behavior in DPDK 18.08, and // DEV_RX_OFFLOAD_CRC_STRIP define has been deleted -- cgit 1.2.3-korg