mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-08 13:44:39 +02:00
* Better place to get server name/type
* Servers export 'isSecure'
This commit is contained in:
parent
ad4eea6ba7
commit
12e7722ec9
6 changed files with 13 additions and 20 deletions
|
@ -16,9 +16,10 @@ var _ = require('lodash');
|
|||
var assert = require('assert');
|
||||
|
||||
exports.moduleInfo = {
|
||||
name : 'SSH',
|
||||
desc : 'SSH Server',
|
||||
author : 'NuSkooler'
|
||||
name : 'SSH',
|
||||
desc : 'SSH Server',
|
||||
author : 'NuSkooler',
|
||||
isSecure : true,
|
||||
};
|
||||
|
||||
exports.getModule = SSHServerModule;
|
||||
|
@ -232,7 +233,3 @@ SSHServerModule.prototype.createServer = function() {
|
|||
|
||||
return server;
|
||||
};
|
||||
|
||||
SSHServerModule.prototype.getServerType = function() {
|
||||
return 'SSH';
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue