| 26 | } |
| 27 | |
| 28 | void RrupDevice::connectDevice() |
| 29 | { |
| 30 | if (this->connected) |
| 31 | return; |
| 32 | |
| 33 | this->socket->connectToHost(this->address, this->port); |
| 34 | |
| 35 | QTimer::singleShot(5000, this, SLOT(connectDevice())); |
| 36 | } |
| 37 | |
| 38 | void RrupDevice::disconnectDevice() |
| 39 | { |
nothing calls this directly
no outgoing calls
no test coverage detected