enigma-bbs/core/server_module.js
Bryan Ashby ad4eea6ba7 * SSH is now functional for 'ssh', PuTTY, SyncTerm, EtherTerm, and hopefully most others
* Explicit detect of syncterm as ANSI
* Add serverType (TELNET, SSH) MCI: %ST
2015-10-21 22:51:35 -06:00

18 lines
363 B
JavaScript

/* jslint node: true */
'use strict';
var PluginModule = require('./plugin_module.js').PluginModule;
exports.ServerModule = ServerModule;
function ServerModule() {
PluginModule.call(this);
}
require('util').inherits(ServerModule, PluginModule);
ServerModule.prototype.createServer = function() {
};
ServerModule.prototype.getServerType = function() {
};