Remove DTLS as it is not supported

This commit is contained in:
Julien Wadel 2020-06-04 09:31:33 +02:00
parent a0731bfc61
commit 33d559811b
2 changed files with 2 additions and 3 deletions

View file

@ -70,8 +70,7 @@ AssistantAbstractView {
ComboBox {
id: transport
model: [ 'UDP', 'TCP', 'TLS', 'DTLS' ]
currentIndex:2
model: [ 'UDP', 'TCP', 'TLS']
}
}
}

View file

@ -102,7 +102,7 @@ DialogPlus {
id: transport
enabled: dialog._serverAddressOk
model: [ 'UDP', 'TCP', 'TLS', 'DTLS' ]
model: [ 'UDP', 'TCP', 'TLS' ]
onActivated: Logic.handleTransportChanged(model[index])
}