diff options
author | Deepak S <deepak.s@linux.intel.com> | 2017-07-20 11:22:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-20 11:22:20 +0000 |
commit | 51759157a499326cfe69ec0eecb00b1c5879bf50 (patch) | |
tree | bb2197d5344b52ec015323a4fd5e36d6ec6937e4 /VNFs/vCGNAPT/init.c | |
parent | cfe2f779d4365dba03659b64668cb301fae53c95 (diff) | |
parent | 0e51437be874b6831e95639f4c1ad6b0133c2a28 (diff) |
Merge "[l2l3 stack] implements new arp state machine & arp buffering"
Diffstat (limited to 'VNFs/vCGNAPT/init.c')
-rw-r--r-- | VNFs/vCGNAPT/init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/VNFs/vCGNAPT/init.c b/VNFs/vCGNAPT/init.c index aa3868d8..3e731839 100644 --- a/VNFs/vCGNAPT/init.c +++ b/VNFs/vCGNAPT/init.c @@ -1729,11 +1729,13 @@ int app_init(struct app_params *app) app_init_pipelines(app); app_init_threads(app); + #ifdef L3_STACK_SUPPORT l3fwd_init(); create_arp_table(); create_nd_table(); populate_lpm_routes(); print_interface_details(); + #endif return 0; } |