Enable LZO framing for the sake of Demo

This commit is contained in:
Davide De Rosa 2018-08-23 23:59:59 +02:00
parent 9f54e624ee
commit 25aa05498d
2 changed files with 4 additions and 7 deletions

View File

@ -36,6 +36,7 @@ extension ViewController {
builder.cipher = .aes128cbc
builder.digest = .sha1
builder.mtu = 1350
builder.LZOFraming = true
builder.renegotiatesAfterSeconds = nil
builder.shouldDebug = true
builder.debugLogKey = "Log"
@ -76,8 +77,6 @@ class ViewController: UIViewController, URLSessionDataDelegate {
textServer.text = "germany"
textDomain.text = "privateinternetaccess.com"
// textServer.text = "159.122.133.238"
// textDomain.text = ""
textPort.text = "1198"
switchTCP.isOn = false
textUsername.text = "myusername"
@ -121,9 +120,9 @@ class ViewController: UIViewController, URLSessionDataDelegate {
@IBAction func tcpClicked(_ sender: Any) {
if switchTCP.isOn {
textPort.text = "443"
textPort.text = "502"
} else {
textPort.text = "8080"
textPort.text = "1198"
}
}

View File

@ -37,6 +37,7 @@ extension ViewController {
builder.cipher = .aes128cbc
builder.digest = .sha1
builder.mtu = 1350
builder.LZOFraming = true
builder.renegotiatesAfterSeconds = nil
builder.shouldDebug = true
builder.debugLogKey = "Log"
@ -71,10 +72,7 @@ class ViewController: NSViewController {
textServer.stringValue = "germany"
textDomain.stringValue = "privateinternetaccess.com"
// textServer.text = "159.122.133.238"
// textDomain.text = ""
textPort.stringValue = "1198"
// textPort.text = "8080"
textUsername.stringValue = "myusername"
textPassword.stringValue = "mypassword"