Enable LZO framing for the sake of Demo
This commit is contained in:
parent
9f54e624ee
commit
25aa05498d
|
@ -36,6 +36,7 @@ extension ViewController {
|
||||||
builder.cipher = .aes128cbc
|
builder.cipher = .aes128cbc
|
||||||
builder.digest = .sha1
|
builder.digest = .sha1
|
||||||
builder.mtu = 1350
|
builder.mtu = 1350
|
||||||
|
builder.LZOFraming = true
|
||||||
builder.renegotiatesAfterSeconds = nil
|
builder.renegotiatesAfterSeconds = nil
|
||||||
builder.shouldDebug = true
|
builder.shouldDebug = true
|
||||||
builder.debugLogKey = "Log"
|
builder.debugLogKey = "Log"
|
||||||
|
@ -76,8 +77,6 @@ class ViewController: UIViewController, URLSessionDataDelegate {
|
||||||
|
|
||||||
textServer.text = "germany"
|
textServer.text = "germany"
|
||||||
textDomain.text = "privateinternetaccess.com"
|
textDomain.text = "privateinternetaccess.com"
|
||||||
// textServer.text = "159.122.133.238"
|
|
||||||
// textDomain.text = ""
|
|
||||||
textPort.text = "1198"
|
textPort.text = "1198"
|
||||||
switchTCP.isOn = false
|
switchTCP.isOn = false
|
||||||
textUsername.text = "myusername"
|
textUsername.text = "myusername"
|
||||||
|
@ -121,9 +120,9 @@ class ViewController: UIViewController, URLSessionDataDelegate {
|
||||||
|
|
||||||
@IBAction func tcpClicked(_ sender: Any) {
|
@IBAction func tcpClicked(_ sender: Any) {
|
||||||
if switchTCP.isOn {
|
if switchTCP.isOn {
|
||||||
textPort.text = "443"
|
textPort.text = "502"
|
||||||
} else {
|
} else {
|
||||||
textPort.text = "8080"
|
textPort.text = "1198"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,7 @@ extension ViewController {
|
||||||
builder.cipher = .aes128cbc
|
builder.cipher = .aes128cbc
|
||||||
builder.digest = .sha1
|
builder.digest = .sha1
|
||||||
builder.mtu = 1350
|
builder.mtu = 1350
|
||||||
|
builder.LZOFraming = true
|
||||||
builder.renegotiatesAfterSeconds = nil
|
builder.renegotiatesAfterSeconds = nil
|
||||||
builder.shouldDebug = true
|
builder.shouldDebug = true
|
||||||
builder.debugLogKey = "Log"
|
builder.debugLogKey = "Log"
|
||||||
|
@ -71,10 +72,7 @@ class ViewController: NSViewController {
|
||||||
|
|
||||||
textServer.stringValue = "germany"
|
textServer.stringValue = "germany"
|
||||||
textDomain.stringValue = "privateinternetaccess.com"
|
textDomain.stringValue = "privateinternetaccess.com"
|
||||||
// textServer.text = "159.122.133.238"
|
|
||||||
// textDomain.text = ""
|
|
||||||
textPort.stringValue = "1198"
|
textPort.stringValue = "1198"
|
||||||
// textPort.text = "8080"
|
|
||||||
textUsername.stringValue = "myusername"
|
textUsername.stringValue = "myusername"
|
||||||
textPassword.stringValue = "mypassword"
|
textPassword.stringValue = "mypassword"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue