summaryrefslogtreecommitdiffstats
path: root/lib/network/network.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/network/network.pm')
-rw-r--r--lib/network/network.pm13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/network/network.pm b/lib/network/network.pm
index 587efeb..8bb291d 100644
--- a/lib/network/network.pm
+++ b/lib/network/network.pm
@@ -435,6 +435,19 @@ sub netprofile_read {
}
+sub advanced_choose {
+ my ($in, $u) = @_;
+
+ my $use_http_for_https = $u->{https_proxy} eq $u->{http_proxy};
+ $in->ask_from(N("Advanced network settings"),
+ N("Here you can configure advanced network settings"),
+ [ { text => N("Disable IPv6"), val => \$u->{ipv6_disabled}, type => "bool" },
+ { text => N("Disable TCP Window Scaling"), val => \$u->{window_scaling}, type => "bool"},
+ ]
+ ) or return;
+ 1;
+}
+
sub miscellaneous_choose {
my ($in, $u) = @_;