(self, conn, encoding=DEFAULT_ENCODING)
| 452 | dtp_handler = DummyTLS_DTPHandler |
| 453 | |
| 454 | def __init__(self, conn, encoding=DEFAULT_ENCODING): |
| 455 | DummyFTPHandler.__init__(self, conn, encoding=encoding) |
| 456 | self.secure_data_channel = False |
| 457 | self._ccc = False |
| 458 | |
| 459 | def cmd_auth(self, line): |
| 460 | """Set up secure control channel.""" |