How is it exactly I send a parameter with the send function?
Working code
cl.send("clientlist", function(err, response, rawResponse) {
console.log(util.inspect(response));
console.log(err);
});
Doesn't work
cl.send("clientlist -times", function(err, response, rawResponse) {
console.log(util.inspect(response));
console.log(err);
});
How is it exactly I send a parameter with the send function?
Working code
Doesn't work