diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | lib/network/connection/xdsl.pm | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- xdsl backend: + o reduce number of maximum failed attempts to 5 (#28087) - connection manager: o allow editing MTU value (#45394) - cellular backend: diff --git a/lib/network/connection/xdsl.pm b/lib/network/connection/xdsl.pm index 7d97f56..4352be7 100644 --- a/lib/network/connection/xdsl.pm +++ b/lib/network/connection/xdsl.pm @@ -259,7 +259,7 @@ sub get_peer_default_options { qw(lock persist nopcomp noccp novj), "kdebug 1", "holdoff 4", - "maxfail 25"; + "maxfail 5"; } sub build_peer { |