Twisted Matrix and telnet server implementation
- by ypercube
I have a project which is essentially a game server where users connect and send text commands via telnet.
The code is in C and really old and unmodular and has several bugs and missing features. The main function alone is half the code.
I came to the conclusion that rewriting it in TwistedMachine could actually result in faster completement, besides other benefits.
So, here is the questions:
What packages and modules I should use? I see a "telnet" module inside "protocols" package. I also see "cronch" package with "ssh" and another "telnet" module.
I'm a complete novice regarding Python.