mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
Added UDP port option to node-red-node-wol (#606)
* Added udp port option * Added UDP port validation and msg.udpport support
This commit is contained in:
committed by
Dave Conway-Jones
parent
e814c676d2
commit
dfddf0645a
@@ -8,15 +8,21 @@ module.exports = function(RED) {
|
||||
RED.nodes.createNode(this,n);
|
||||
this.mac = n.mac.trim();
|
||||
this.host = n.host;
|
||||
this.udpport = n.udpport;
|
||||
var node = this;
|
||||
|
||||
this.on("input", function(msg) {
|
||||
var mac = this.mac || msg.mac || null;
|
||||
var host = this.host || msg.host || '255.255.255.255';
|
||||
var udpport = Number(msg.udpport || this.udpport || '9');
|
||||
if (udpport < 1 || udpport > 65535) {
|
||||
node.warn("WOL: UDP port must be within 1 and 65535; it has been reset to 9.");
|
||||
udpport = 9;
|
||||
}
|
||||
if (mac != null) {
|
||||
if (chk.test(mac)) {
|
||||
try {
|
||||
wol.wake(mac, {address: host}, function(error) {
|
||||
wol.wake(mac, {address: host, port: udpport}, function(error) {
|
||||
if (error) {
|
||||
node.warn(error);
|
||||
node.status({fill:"red",shape:"ring",text:" "});
|
||||
|
||||
Reference in New Issue
Block a user