Skip to content
Snippets Groups Projects
Commit 993e38b2 authored by echicken's avatar echicken :chicken:
Browse files

Blah.

parent b74a3486
No related branches found
No related tags found
No related merge requests found
......@@ -406,10 +406,11 @@ try {
var ini = f.iniGetObject('BBS');
f.close();
if (typeof ini.RLoginInterface === 'undefined' || ini.RLoginInterface === '0.0.0.0') {
if (typeof ini.RLoginInterface === 'undefined') {
var rlogin_addr = '127.0.0.1';
} else {
var rlogin_addr = ini.RLoginInterface;
var rlogin_addr = ini.RLoginInterface.split(/,/)[0];
if (parseInt(rlogin_addr.replace(/[^\d]/g, '') == 0)) rlogin_addr = '127.0.0.1';
}
rlogin = new RLoginClient(
......
......@@ -230,10 +230,10 @@ try {
f.close();
if (typeof ini.TelnetInterface === 'undefined') {
var telnet_addr = 'localhost';
var telnet_addr = '127.0.0.1';
} else {
var telnet_addr = ini.TelnetInterface.split(/,/)[0];
if (parseInt(telnet_addr.replace(/[^\d]/g, '') == 0)) telnet_addr = 'localhost';
if (parseInt(telnet_addr.replace(/[^\d]/g, '') == 0)) telnet_addr = '127.0.0.1';
}
var wss = new WebSocketProxy(client);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment