mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
parent
0583c60837
commit
c016b102eb
@ -104,6 +104,12 @@ module.exports = function(RED) {
|
||||
|
||||
var sock = dgram.createSocket(node.ipv); // default to ipv4
|
||||
|
||||
sock.on("error", function(err) {
|
||||
// Any async error will also get reported in the sock.send call.
|
||||
// This handler is needed to ensure the error marked as handled to
|
||||
// prevent it going to the global error handler and shutting node-red
|
||||
// down.
|
||||
});
|
||||
if (node.multicast != "false") {
|
||||
if (node.outport == "") { node.outport = node.port; }
|
||||
sock.bind(node.outport, function() { // have to bind before you can enable broadcast...
|
||||
|
Loading…
Reference in New Issue
Block a user