mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-10 22:54:37 +02:00
* WIP Menu system vs raw module access
This commit is contained in:
parent
f7462bbbdd
commit
efcc8756ba
8 changed files with 153 additions and 32 deletions
|
@ -735,14 +735,12 @@ function createServer() {
|
|||
*/
|
||||
|
||||
function TelnetServerModule() {
|
||||
console.log('TelnetServerModule')
|
||||
ServerModule.call(this);
|
||||
}
|
||||
|
||||
util.inherits(TelnetServerModule, ServerModule);
|
||||
|
||||
TelnetServerModule.prototype.createServer = function() {
|
||||
console.log('TelnetServerModule createServer')
|
||||
TelnetServerModule.super_.prototype.createServer.call(this);
|
||||
|
||||
var server = net.createServer(function onConnection(sock) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue