def __init__(self, sock_obj, cmd_channel): DTPHandler.__init__(self, sock_obj, cmd_channel) if self.cmd_channel._prot: self.secure_connection(self.cmd_channel.ssl_context)
def close(self): if self._ssl_established: return self._do_ssl_shutdown() DTPHandler.close(self)