diff options
author | Vishwesh M Rudramuni <vishwesh.m.rudramuni@intel.com> | 2017-05-26 11:11:15 +0530 |
---|---|---|
committer | Deepak S <deepak.s@linux.intel.com> | 2017-05-30 14:22:57 +0000 |
commit | 1b0802cbf10ac4d8911f0916d4ba0b02010924c8 (patch) | |
tree | 37bc2b655403f30b197ade7ca0c2054bfdbdfe47 /Makefile | |
parent | e7773602bfca7cb9c25beb42dfa5d9c91ec459fd (diff) |
[SAMPLEVNF] Adding UDP Replay VNF
JIRA: SAMPLEVNF-8
This code adds support for UDP Replay which acts as a reflector of all the
UDP packets on the requested port.
Change-Id: If8330580f58c785736e578e815d15d983ce20209
Signed-off-by: Vishwesh M Rudramuni <vishwesh.m.rudramuni@intel.com>
Signed-off-by: Deepak S <deepak.s@linux.intel.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -24,8 +24,9 @@ VNF_DIR := VNFs ACL := $(VNF_DIR)/vACL FW := $(VNF_DIR)/vFW CGNAPT := $(VNF_DIR)/vCGNAPT +UDP_Replay := $(VNF_DIR)/UDP_Replay -subdirs := $(ACL) $(CGNAPT) $(FW) +subdirs := $(ACL) $(CGNAPT) $(FW) $(UDP_Replay) .PHONY: $(TARGETS) $(subdirs) |