mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Merge remote-tracking branch 'upstream/master' into tcpgetfix
This commit is contained in:
commit
34f1f7a31d
@ -102,7 +102,7 @@ module.exports = function(RED) {
|
|||||||
try { server.bind(node.port,node.iface); }
|
try { server.bind(node.port,node.iface); }
|
||||||
catch(e) { } // Don't worry if already bound
|
catch(e) { } // Don't worry if already bound
|
||||||
}
|
}
|
||||||
RED.httpAdmin.get('/udp-ports/:id', RED.auth.needsPermission('udp-in.read'), function(req,res) {
|
RED.httpAdmin.get('/udp-ports/:id', RED.auth.needsPermission('udp-ports.read'), function(req,res) {
|
||||||
res.json(Object.keys(udpInputPortsInUse));
|
res.json(Object.keys(udpInputPortsInUse));
|
||||||
});
|
});
|
||||||
RED.nodes.registerType("udp in",UDPin);
|
RED.nodes.registerType("udp in",UDPin);
|
||||||
|
Loading…
Reference in New Issue
Block a user