summaryrefslogtreecommitdiffstats
path: root/VNFs/DPPD-PROX/handle_esp.c
diff options
context:
space:
mode:
authorLuc Provoost <luc.provoost@gmail.com>2023-06-29 10:58:18 +0200
committerLuc Provoost <luc.provoost@gmail.com>2023-06-29 10:58:18 +0200
commit439ab3d170f1a41e127a904bc5cbab1df39104ff (patch)
tree8c0d6dfec6c42a51850365cb26c05ea76c8a5509 /VNFs/DPPD-PROX/handle_esp.c
parent18dbfb93ed8aa67fc9266fa1a6ab40baaf54872a (diff)
Renaming of defines for clarity
Add the prefix TBASE_FLAG to all defines that are used in the flags field of the tbase structure Signed-off-by: Luc Provoost <luc.provoost@gmail.com> Change-Id: Ic7c6c1ba66fbda5a4a43e9a3bf966710157b5b17
Diffstat (limited to 'VNFs/DPPD-PROX/handle_esp.c')
-rw-r--r--VNFs/DPPD-PROX/handle_esp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/VNFs/DPPD-PROX/handle_esp.c b/VNFs/DPPD-PROX/handle_esp.c
index bdcd157c..be46c214 100644
--- a/VNFs/DPPD-PROX/handle_esp.c
+++ b/VNFs/DPPD-PROX/handle_esp.c
@@ -427,7 +427,7 @@ static void init_task_esp_enc(struct task_base *tbase, struct task_args *targ)
struct task_esp *task = (struct task_esp *)tbase;
unsigned int session_size;
- tbase->flags |= FLAG_NEVER_FLUSH;
+ tbase->flags |= TBASE_FLAG_NEVER_FLUSH;
uint8_t lcore_id = targ->lconf->id;
char name[64];
@@ -525,7 +525,7 @@ static void init_task_esp_dec(struct task_base *tbase, struct task_args *targ)
struct task_esp *task = (struct task_esp *)tbase;
unsigned int session_size;
- tbase->flags |= FLAG_NEVER_FLUSH;
+ tbase->flags |= TBASE_FLAG_NEVER_FLUSH;
uint8_t lcore_id = targ->lconf->id;
char name[64];