예제 #1
0
파일: telnet.py 프로젝트: czardoz/beeswarm
 def __init__(self, client_address, server, _socket, session, vfs):
     self.session = session
     self.auth_count = 0
     self.username = None
     request = TelnetWrapper.false_request()
     request._sock = _socket
     self.vfs = vfs
     Commands.__init__(self, request, client_address, server, vfs, self.session)
예제 #2
0
 def __init__(self, client_address, server, _socket, session, vfs):
     self.session = session
     self.auth_count = 0
     self.username = None
     request = TelnetWrapper.false_request()
     request._sock = _socket
     self.vfs = vfs
     Commands.__init__(self, request, client_address, server, vfs,
                       self.session)
예제 #3
0
 def writecooked(self, text):
     # TODO: Figure out way to log outgoing without logging "echo"
     # self.session.transcript_outgoing(text)
     Commands.writecooked(self, text)
예제 #4
0
파일: ssh.py 프로젝트: nghiemnv/beeswarm
 def __init__(self, request, client_address, server, vfs, session):
     Commands.__init__(self, request, client_address, server, vfs, session)
예제 #5
0
파일: telnet.py 프로젝트: czardoz/beeswarm
 def writecooked(self, text):
     # TODO: Figure out way to log outgoing without logging "echo"
     # self.session.transcript_outgoing(text)
     Commands.writecooked(self, text)
예제 #6
0
 def __init__(self, request, client_address, server, vfs, session):
     Commands.__init__(self, request, client_address, server, vfs, session)