Convert the telnet protocols over for Py3.
This commit is contained in:
parent
1da3e0caa0
commit
b88c74a316
8 changed files with 63 additions and 55 deletions
|
|
@ -14,9 +14,9 @@ from builtins import object
|
|||
from django.conf import settings
|
||||
from evennia.utils import utils
|
||||
|
||||
MSSP = chr(70)
|
||||
MSSP_VAR = chr(1)
|
||||
MSSP_VAL = chr(2)
|
||||
MSSP = b'\x46'
|
||||
MSSP_VAR = b'\x01'
|
||||
MSSP_VAL = b'\x02'
|
||||
|
||||
|
||||
# try to get the customized mssp info, if it exists.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue