Método Node.js socket.setBroadcast()

El método socket.setBroadcast() es una interfaz de programación de aplicaciones incorporada de clase Socket dentro del módulo dgram que se utiliza para establecer o borrar la opción de socket SO_BROADCAST que ayuda al cliente a enviar el datagrama a una dirección de transmisión particular.

Sintaxis:

const socket.setBroadcast( flag )

Parámetros: este método toma el valor booleano como parámetro verdadero para habilitar la opción de socket SO_BROADCAST y falso para deshabilitarla.

Valor devuelto: este método no devuelve ningún valor.

Ejemplo 1: Nombre de archivo: index.js

Javascript

// Node.js program to demonstrate the
// socket.setBroadcast() method
  
// Importing dgram module
var dgram = require('dgram');
  
// Creating and initializing client
// and server socket
var client = dgram.createSocket("udp4");
var server = dgram.createSocket("udp4");
let broadcast_address = 12345;
  
// Catching the message event
server.on("message", function (msg) {
  
    // Displaying the client message
    process.stdout.write("UDP String: " + msg + "\n");
  
    // Exiting process
    process.exit();
})
.bind(broadcast_address, () => {
  
    // Enable the SO_BROADCAST socket option 
    // by using the setBroadcast() method
    server.setBroadcast(true);
});
  
// Client sending message to server
client.send("Hello", 0, 7, 
        broadcast_address, "localhost");

Producción:

UDP String: Hello

Ejemplo 2: Nombre de archivo: index.js

Javascript

// Node.js program to demonstrate the
// socket.setBroadcast() method
  
// Importing dgram module
var dgram = require('dgram');
  
// Creating and initializing client
// and server socket
var client = dgram.createSocket("udp4");
var server = dgram.createSocket("udp4");
  
// Catching the message event
server.on("message", function (msg) {
  
    // Displaying the client message
    process.stdout.write("UDP String: " + msg + "\n");
  
    // Exiting process
    process.exit();
});
  
// Catching the listening event
server.on('listening', () => {
    const address = server.address();
    console.log(`server listening 
        ${address.address}:${address.port}`);
});
  
// Binding server with port address
server.bind(1234, () => {
  
    // Enable the SO_BROADCAST socket option 
    // by using the setBroadcast() method
    server.setBroadcast(true);
});
  
// Client sending message to server
client.send("Hello", 0, 7, 1234, "localhost");

Producción:

server listening 0.0.0.0:1234
UDP String: Hello

Ejecute el archivo index.js con el siguiente comando:

node index.js

Referencia: https://nodejs.org/dist/latest-v12.x/docs/api/dgram.html#dgram_socket_setbroadcast_flag

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *