| 325 | // Destructor |
| 326 | |
| 327 | RemoteDebug::~RemoteDebug() { |
| 328 | |
| 329 | // Flush |
| 330 | |
| 331 | if (TelnetClient && TelnetClient.connected()) { |
| 332 | TelnetClient.flush(); |
| 333 | } |
| 334 | |
| 335 | // Stop |
| 336 | |
| 337 | stop(); |
| 338 | } |
| 339 | |
| 340 | // Stop the server |
| 341 |
nothing calls this directly
no outgoing calls
no test coverage detected