Set up secure control channel.
(self, line)
| 457 | self._ccc = False |
| 458 | |
| 459 | def cmd_auth(self, line): |
| 460 | """Set up secure control channel.""" |
| 461 | self.push('234 AUTH TLS successful') |
| 462 | self.secure_connection() |
| 463 | |
| 464 | def cmd_ccc(self, line): |
| 465 | self.push('220 Reverting back to clear-text') |
nothing calls this directly
no test coverage detected