diff options
author | imarom <imarom@cisco.com> | 2016-02-15 03:12:29 -0500 |
---|---|---|
committer | imarom <imarom@cisco.com> | 2016-02-15 07:11:26 -0500 |
commit | ec369cd722a400130b9b754c2c965ec60beb9d56 (patch) | |
tree | 0b6f3bcaaa957983fd148548f09bd1ae4b900cfd /linux_dpdk | |
parent | 1f60016f591ebd2e260e501c8c5da10c11d0c7ad (diff) |
many bugs uncovered by the PCAP injection:
1. NamedTuple constructor
2. Scappy
3. zlib for server
Diffstat (limited to 'linux_dpdk')
-rwxr-xr-x | linux_dpdk/ws_main.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linux_dpdk/ws_main.py b/linux_dpdk/ws_main.py index 81bc6b28..aec325d0 100755 --- a/linux_dpdk/ws_main.py +++ b/linux_dpdk/ws_main.py @@ -153,6 +153,7 @@ rpc_server_src = SrcGroup(dir='src/rpc-server/', 'trex_rpc_jsonrpc_v2_parser.cpp', 'trex_rpc_cmds_table.cpp', 'trex_rpc_cmd.cpp', + 'trex_rpc_zip.cpp', 'commands/trex_rpc_cmd_test.cpp', 'commands/trex_rpc_cmd_general.cpp', @@ -696,7 +697,7 @@ def build_prog (bld, build_obj): includes =includes_path, cxxflags =(build_obj.get_cxx_flags()+['-std=gnu++11',]), linkflags = build_obj.get_link_flags() , - lib=['pthread','dl'], + lib=['pthread','dl', 'z'], use =[build_obj.get_dpdk_target(),'zmq'], source = bp.file_list(top), target = build_obj.get_target()) |