| 517 | |
| 518 | |
| 519 | void MainWindow::toggleDTLSServer() |
| 520 | { |
| 521 | QSettings settings(SETTINGSFILE, QSettings::IniFormat); |
| 522 | settings.setValue("dtlsServerEnable", !settings.value("dtlsServerEnable", true).toBool()); |
| 523 | applyNetworkSettings(); |
| 524 | } |
| 525 | |
| 526 | void MainWindow::toggleUDPServer() |
| 527 | { |
nothing calls this directly
no outgoing calls
no test coverage detected