Revisit OpenVPN view

- Move pull section below
- Add IPv6 to preview
This commit is contained in:
Davide De Rosa 2024-10-05 10:06:51 +02:00
parent 7078e5c435
commit 635700c195
No known key found for this signature in database
GPG Key ID: A48836171C759F5E
1 changed files with 4 additions and 3 deletions

View File

@ -72,11 +72,11 @@ struct OpenVPNView: View {
var body: some View { var body: some View {
Group { Group {
moduleSection(for: accountRows, header: Strings.Global.account)
moduleSection(for: remotesRows, header: Strings.Modules.Openvpn.remotes)
if !isServerPushed { if !isServerPushed {
moduleSection(for: pullRows, header: Strings.Modules.Openvpn.pull) moduleSection(for: pullRows, header: Strings.Modules.Openvpn.pull)
} }
moduleSection(for: accountRows, header: Strings.Global.account)
moduleSection(for: remotesRows, header: Strings.Modules.Openvpn.remotes)
moduleSection(for: redirectRows, header: Strings.Modules.Openvpn.redirectGateway) moduleSection(for: redirectRows, header: Strings.Modules.Openvpn.redirectGateway)
moduleSection( moduleSection(
for: ipRows(for: configuration.ipv4, routes: configuration.routes4), for: ipRows(for: configuration.ipv4, routes: configuration.routes4),
@ -335,7 +335,8 @@ private extension OpenVPNView {
builder.remotes = [ builder.remotes = [
.init(rawValue: "2.2.2.2:UDP:2222")!, .init(rawValue: "2.2.2.2:UDP:2222")!,
.init(rawValue: "6.6.6.6:UDP:6666")!, .init(rawValue: "6.6.6.6:UDP:6666")!,
.init(rawValue: "12.12.12.12:TCP:21212")! .init(rawValue: "12.12.12.12:TCP:21212")!,
.init(rawValue: "12:12:12:12:20:20:20:20:TCP6:21212")!
] ]
builder.ipv4 = IPSettings(subnet: try! .init("5.5.5.5", 24)) builder.ipv4 = IPSettings(subnet: try! .init("5.5.5.5", 24))
.including(routes: [ .including(routes: [