Merge pull request #210 from thelounge/xpaw/connect-port

Fix #195: Support port in connect command
This commit is contained in:
Max-P 2016-03-20 13:43:24 -04:00
commit 461f83603a

View file

@ -1,12 +1,22 @@
exports.commands = ["connect", "server"];
exports.input = function(network, chan, cmd, args) {
if (args.length !== 0) {
var client = this;
client.connect({
host: args[0]
});
if (args.length === 0) {
return;
}
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;
};