Skip to content
Snippets Groups Projects
Commit 54ae4f9a authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Support Rlogin terminal="xtrn_sec=<code>" to take users directly to an xtrn sec

As requested via DOVE-Net by xbit and StingRay
parent 7be352ac
No related branches found
No related tags found
No related merge requests found
......@@ -211,7 +211,10 @@ if(options.show_avatar && console.term_supports(USER_ANSI)) {
// if you want your RLogin server to act as a door game server only
if(options.rlogin_xtrn_menu
&& bbs.sys_status&SS_RLOGIN) {
bbs.xtrn_sec();
var xtrn_sec;
if (console.terminal.indexOf("xtrn_sec=") === 0)
xtrn_sec = console.terminal.substring(9);
bbs.xtrn_sec(xtrn_sec);
bbs.hangup();
} else if(!(user.security.restrictions&UFLAG_G)
&& console.term_supports(USER_ANSI)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment