| 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 | |
| 93 | TelnetConsole::~TelnetConsole() |
| 94 | { |
nothing calls this directly
no test coverage detected