Merge pull request #210 from thelounge/xpaw/connect-port
Fix #195: Support port in connect command
This commit is contained in:
commit
461f83603a
@ -1,12 +1,22 @@
|
|||||||
exports.commands = ["connect", "server"];
|
exports.commands = ["connect", "server"];
|
||||||
|
|
||||||
exports.input = function(network, chan, cmd, args) {
|
exports.input = function(network, chan, cmd, args) {
|
||||||
if (args.length !== 0) {
|
if (args.length === 0) {
|
||||||
var client = this;
|
return;
|
||||||
client.connect({
|
|
||||||
host: args[0]
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var port = args[1] || "";
|
||||||
|
var tls = port[0] === "+";
|
||||||
|
|
||||||
|
if (tls) {
|
||||||
|
port = port.substring(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.connect({
|
||||||
|
host: args[0],
|
||||||
|
port: port,
|
||||||
|
tls: tls,
|
||||||
|
});
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user