|
@@ -20,13 +20,18 @@ class ProxyClientProtocol(protocol.Protocol):
|
|
self.cli_queue.get().addCallback(self.serverDataReceived)
|
|
self.cli_queue.get().addCallback(self.serverDataReceived)
|
|
|
|
|
|
def serverDataReceived(self, chunk):
|
|
def serverDataReceived(self, chunk):
|
|
|
|
+ # TODO: Line processing, and line cleaning (remove ANSI color codes)
|
|
if chunk is False:
|
|
if chunk is False:
|
|
self.cli_queue = None
|
|
self.cli_queue = None
|
|
log.msg("Client: disconnecting from peer")
|
|
log.msg("Client: disconnecting from peer")
|
|
self.factory.continueTrying = False
|
|
self.factory.continueTrying = False
|
|
self.transport.loseConnection()
|
|
self.transport.loseConnection()
|
|
|
|
+ elif b"$" == chunk:
|
|
|
|
+ self.factory.svr_queue.put(b"HELLO.\r\n")
|
|
|
|
+ self.cli_queue.get().addCallback(self.serverDataReceived)
|
|
elif self.cli_queue:
|
|
elif self.cli_queue:
|
|
log.msg("Client: writing %d bytes to peer" % len(chunk))
|
|
log.msg("Client: writing %d bytes to peer" % len(chunk))
|
|
|
|
+ log.msg(">>", chunk)
|
|
self.transport.write(chunk)
|
|
self.transport.write(chunk)
|
|
self.cli_queue.get().addCallback(self.serverDataReceived)
|
|
self.cli_queue.get().addCallback(self.serverDataReceived)
|
|
else:
|
|
else:
|
|
@@ -34,6 +39,7 @@ class ProxyClientProtocol(protocol.Protocol):
|
|
|
|
|
|
def dataReceived(self, chunk):
|
|
def dataReceived(self, chunk):
|
|
log.msg("Client: %d bytes received from peer" % len(chunk))
|
|
log.msg("Client: %d bytes received from peer" % len(chunk))
|
|
|
|
+ log.msg("<<", chunk)
|
|
self.factory.svr_queue.put(chunk)
|
|
self.factory.svr_queue.put(chunk)
|
|
|
|
|
|
def connectionLost(self, why):
|
|
def connectionLost(self, why):
|