From 719054b1520da67ced27f1a346e27fbee88e4b34 Mon Sep 17 00:00:00 2001 From: Hanoh Haim Date: Tue, 3 May 2016 16:02:04 +0300 Subject: Fix bug on mac replacement by Wenxian --- src/main_dpdk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/main_dpdk.cpp b/src/main_dpdk.cpp index 1496513d..771c59b3 100644 --- a/src/main_dpdk.cpp +++ b/src/main_dpdk.cpp @@ -1985,7 +1985,7 @@ void CCoreEthIF::update_mac_addr(CGenNode * node,uint8_t *p){ if ( unlikely( CGlobalInfo::m_options.preview.get_mac_ip_mapping_enable() ) ) { /* mac mapping file is configured */ - if (node->m_src_mac.inused==INUSED) { + if (if (node->is_initiator_pkt() && (node->m_src_mac.inused==INUSED)) { memcpy(p+6, &node->m_src_mac.mac, sizeof(uint8_t)*6); } } else if ( unlikely( CGlobalInfo::m_options.preview.get_mac_ip_overide_enable() ) ){ -- cgit 1.2.3-korg