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)
示例#2
0
 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)
示例#3
0
 def close(self):
     if self._ssl_established:
         return self._do_ssl_shutdown()
     DTPHandler.close(self)
示例#4
0
文件: handlers.py 项目: iamtio/cwFTP
 def close(self):
     if self._ssl_established:
         return self._do_ssl_shutdown()
     DTPHandler.close(self)