From 599f4ecd1a2e9fdbe53a848b1dad71a08a67e048 Mon Sep 17 00:00:00 2001 From: Ido Barnea Date: Sun, 30 Oct 2016 19:01:00 +0200 Subject: Increased number of ARP retries at start to 10 Signed-off-by: Ido Barnea --- 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 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); -- cgit 1.2.3-korg