diff options
author | Ido Barnea <ibarnea@cisco.com> | 2016-10-30 19:01:00 +0200 |
---|---|---|
committer | Ido Barnea <ibarnea@cisco.com> | 2016-10-30 19:01:00 +0200 |
commit | 599f4ecd1a2e9fdbe53a848b1dad71a08a67e048 (patch) | |
tree | 16143fff293c5d81c848d521ca0eefbd657ff787 /src | |
parent | d821c0b9e8afff312f79faf4d9db9a1401b8a216 (diff) |
Increased number of ARP retries at start to 10
Signed-off-by: Ido Barnea <ibarnea@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/main_dpdk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |