File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2016 - 2019 Jolla Ltd.
2
+ * Copyright (c) 2016 - 2021 Jolla Ltd.
3
3
* Copyright (c) 2019 Open Mobile Platform LLC.
4
4
*
5
5
* You may use this file under the terms of the BSD license as follows:
@@ -834,6 +834,10 @@ QVariantMap SettingsVpnModel::processOpenVpnProvisioningFile(QFile &provisioning
834
834
} else if (directive == QStringLiteral (" connect-retry-max" )) {
835
835
// Ignore, must not be set with ConnMan
836
836
qInfo () << " Ignoring connect-retry-max with OpenVPN" ;
837
+ } else if (directive == QStringLiteral (" block-ipv6" )) {
838
+ if (!arguments.isEmpty ()) {
839
+ rv.insert (QStringLiteral (" OpenVPN.BlockIPv6" ), arguments.join (QChar (' ' )));
840
+ }
837
841
} else {
838
842
// A directive that ConnMan does not care about - pass through to the config file
839
843
extraOptions.append (line);
You can’t perform that action at this time.
0 commit comments