* 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
This commit is contained in:
@@ -20,7 +20,10 @@ function addNewClient(client, clientSock) {
|
||||
// Create a client specific logger
|
||||
client.log = logger.log.child( { clientId : id } );
|
||||
|
||||
var connInfo = { ip : clientSock.remoteAddress };
|
||||
var connInfo = {
|
||||
ip : clientSock.remoteAddress,
|
||||
serverType : client.session.serverType,
|
||||
};
|
||||
|
||||
if(client.log.debug()) {
|
||||
connInfo.port = clientSock.localPort;
|
||||
|
||||
Reference in New Issue
Block a user