diff options
author | Deepak S <deepak.s@linux.intel.com> | 2017-11-07 04:56:51 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-11-07 04:56:51 +0000 |
commit | 516aad7ecf88e968940d384a1f56dca4e42a279b (patch) | |
tree | d6a591d9e8259695ee5a4a8390463ece6957cfec /VNFs/DPPD-PROX/Makefile | |
parent | f6abc2e6a02557e82ad0d1e5440653bb8884ecc8 (diff) | |
parent | 2f1fa2c37697377aea015e7d82c49b3df2ae9111 (diff) |
Merge "lw_AFTR: IP Checksum required on generated packet."
Diffstat (limited to 'VNFs/DPPD-PROX/Makefile')
-rw-r--r-- | VNFs/DPPD-PROX/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/VNFs/DPPD-PROX/Makefile b/VNFs/DPPD-PROX/Makefile index 79bfdef3..87ea3bce 100644 --- a/VNFs/DPPD-PROX/Makefile +++ b/VNFs/DPPD-PROX/Makefile @@ -109,6 +109,11 @@ else CFLAGS += -DPROX_MAX_LOG_LVL=$(log) endif +# When ipv4 packet is de-encalpusled from ipv6 packet, genaerate IP checksum. +ifeq ($(GEN_DECAP_IPV6_TO_IPV4_CKSUM),y) +CFLAGS += -DGEN_DECAP_IPV6_TO_IPV4_CKSUM +endif + # override any use-case/enviroment specific choices regarding crc and # always use the sw implementation ifeq ($(crc),soft) |