From: Ido Barnea Date: Sun, 30 Oct 2016 17:01:00 +0000 (+0200) Subject: Increased number of ARP retries at start to 10 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=599f4ecd1a2e9fdbe53a848b1dad71a08a67e048;p=trex.git Increased number of ARP retries at start to 10 Signed-off-by: Ido Barnea --- diff --git a/src/main_dpdk.cpp b/src/main_dpdk.cpp index eb845803..fbd55173 100644 --- a/src/main_dpdk.cpp +++ b/src/main_dpdk.cpp @@ -3084,7 +3084,7 @@ void CGlobalTRex::pre_test() { do { ret = pretest.resolve_all(); count++; - } while ((ret != true) && (count < 3)); + } while ((ret != true) && (count < 10)); if ( CGlobalInfo::m_options.preview.getVMode() > 0) { pretest.dump(stdout);