summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--lib/network/connection.pm2
2 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 86282b2..7b00495 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- connection manager:
+ o allow editing MTU value (#45394)
- cellular backend:
o support large PIN (from 4 to 8 digits) (#46972)
- net_monitor:
diff --git a/lib/network/connection.pm b/lib/network/connection.pm
index 3a36741..65d8cb0 100644
--- a/lib/network/connection.pm
+++ b/lib/network/connection.pm
@@ -240,6 +240,8 @@ sub get_control_settings {
{ text => N("Allow users to manage the connection"), val => \$self->{control}{userctl}, type => "bool" },
{ text => N("Start the connection at boot"), val => \$self->{control}{onboot}, type => "bool" },
{ label => N("Metric"), val => \$self->{control}{metric}, advanced => 1 },
+ { label => N("MTU"), val => \$self->{control}{mtu}, advanced => 1,
+ help => N("Maximum size of network message (MTU). If unsure, left blank.") },
];
}