(self, connector, reason)
| 61 | self._playerController._client.ui.showDebugMessage("Starting to connect to VLC...") |
| 62 | |
| 63 | def clientConnectionLost(self, connector, reason): |
| 64 | self._playerController._client.ui.showDebugMessage("Connection to VLC lost: {}".format(reason)) |
| 65 | ReconnectingClientFactory.clientConnectionLost(self, connector, reason) |
| 66 | |
| 67 | def clientConnectionFailed(self, connector, reason): |
| 68 | self._playerController._client.ui.showDebugMessage("Connection to VLC failed: {}".format(reason)) |
nothing calls this directly
no test coverage detected