diff options
author | 2022-02-11 19:55:41 +0100 | |
---|---|---|
committer | 2022-02-11 19:55:41 +0100 | |
commit | 0a07d296d453c11a31356844a0aae140fe012324 (patch) | |
tree | 505c0e94a4f6416aac242f98f9ac914c3abf4f87 /VNFs/DPPD-PROX/prox_port_cfg.h | |
parent | f7e3c60f502521862045a2de4bd25b6e5b2a49be (diff) |
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 <luc.provoost@gmail.com>
Change-Id: I88b0b3906cc247ae5653ad59b8aa425f0cddf347
Diffstat (limited to 'VNFs/DPPD-PROX/prox_port_cfg.h')
-rw-r--r-- | VNFs/DPPD-PROX/prox_port_cfg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/VNFs/DPPD-PROX/prox_port_cfg.h b/VNFs/DPPD-PROX/prox_port_cfg.h index 50359202..24fd8aac 100644 --- a/VNFs/DPPD-PROX/prox_port_cfg.h +++ b/VNFs/DPPD-PROX/prox_port_cfg.h @@ -91,6 +91,7 @@ struct prox_port_cfg { uint8_t virtual; uint8_t all_rx_queues; uint16_t n_vlans; + uint32_t v6_mask_length; }; extern rte_atomic32_t lsc; |