diff options
author | Deepak S <deepak.s@linux.intel.com> | 2017-06-02 11:33:23 +0530 |
---|---|---|
committer | Deepak S <deepak.s@linux.intel.com> | 2017-06-02 13:36:30 +0000 |
commit | a14f5674230cfe394ebc5e96c6473994ce8689df (patch) | |
tree | e5cb456999aeadc6b8614e67d9cd9d98c8ef7248 /Makefile | |
parent | 8771dd76aefffe0dd294d11984d733595946a650 (diff) |
Adding UDP Replay VNF without arp support
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: I633e65a4964fab4cc46e2ed09c742dcc63ce6258
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) |