Increased number of ARP retries at start to 10
authorIdo Barnea <[email protected]>
Sun, 30 Oct 2016 17:01:00 +0000 (19:01 +0200)
committerIdo Barnea <[email protected]>
Sun, 30 Oct 2016 17:01:00 +0000 (19:01 +0200)
Signed-off-by: Ido Barnea <[email protected]>
src/main_dpdk.cpp

index eb84580..fbd5517 100644 (file)
@@ -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);