mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-02-11 00:00:08 +08:00
26 lines
564 B
Plaintext
26 lines
564 B
Plaintext
//
|
|
// VPNProfile.swift
|
|
// OpenVPNAdapter
|
|
//
|
|
// Created by Sergey Abramchuk on 27/09/2018.
|
|
//
|
|
// Do not commit changes of this file to the repo!
|
|
|
|
import Foundation
|
|
|
|
struct VPNProfile {
|
|
|
|
static let username: String = "<%= OPENVPN_USERNAME %>"
|
|
static let password: String = "<%= OPENVPN_PASSWORD %>"
|
|
|
|
static let configuration: String = """
|
|
<% OPENVPN_CONFIGURATION.each_line do |line| %>
|
|
<%= line %>
|
|
<% end %>
|
|
"""
|
|
|
|
static let remoteHost: String = "<%= OPENVPN_REMOTE_HOST %>"
|
|
static let remotePort: Int = <%= OPENVPN_REMOTE_PORT %>
|
|
|
|
}
|