| 81 | } |
| 82 | |
| 83 | TelnetConsole::TelnetConsole() |
| 84 | { |
| 85 | Con::addConsumer(telnetCallback); |
| 86 | |
| 87 | mAcceptSocket = NetSocket::INVALID; |
| 88 | mAcceptPort = -1; |
| 89 | mClientList = NULL; |
| 90 | mRemoteEchoEnabled = false; |
| 91 | |
| 92 | dStrncpy(mTelnetPassword, "", PasswordMaxLength); |
| 93 | dStrncpy(mListenPassword, "", PasswordMaxLength); |
| 94 | } |
| 95 | |
| 96 | TelnetConsole::~TelnetConsole() |
| 97 | { |
nothing calls this directly
no test coverage detected