2
2
mirror of https://git.coolaj86.com/coolaj86/telebit.js.git synced 2025-03-03 07:00:45 +00:00

add sclient with inverse ssh proxying

This commit is contained in:
AJ ONeal 2018-09-11 02:02:15 -06:00
parent 5ce4b90bcd
commit f2f85cfa18

View File

@ -5,6 +5,13 @@
// node telebit daemon arg1 arg2
if ('daemon' === process.argv[2]) {
require('./telebitd.js');
} else if ('sclient' === process.argv[2]) {
process.argv.splice(1,1);
require('sclient/bin/sclient.js');
} else if ('ssh' === process.argv[2] && /[\w-]+\.[a-z]{2,}/i.test(process.argv[3])) {
process.argv.splice(1,1,'sclient');
process.argv.splice(2,1,'--ssh');
require('sclient/bin/sclient.js');
} else {
require('./telebit-remote.js');
}