Mudlet seems to fail TTYPE handshake if data compression is activated before TTYPE. Should resolve #512.
This commit is contained in:
parent
57144b2c21
commit
81aa43933c
2 changed files with 4 additions and 4 deletions
|
|
@ -32,10 +32,11 @@ class TelnetProtocol(Telnet, StatefulTelnetProtocol, Session):
|
|||
self.iaw_mode = False
|
||||
client_address = self.transport.client
|
||||
self.init_session("telnet", client_address, self.factory.sessionhandler)
|
||||
# negotiate mccp (data compression)
|
||||
self.mccp = Mccp(self)
|
||||
# negotiate ttype (client info)
|
||||
# Obs: mudlet ttype does not seem to work if we start mccp before ttype. /Griatch
|
||||
self.ttype = ttype.Ttype(self)
|
||||
# negotiate mccp (data compression) - turn this off for wireshark analysis
|
||||
self.mccp = Mccp(self)
|
||||
# negotiate mssp (crawler communication)
|
||||
self.mssp = mssp.Mssp(self)
|
||||
# msdp
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue