Método Node.js socket.setMulticastTTL()

El socket.setMulticastTTL() es una interfaz de programación de aplicaciones incorporada de la clase Socket dentro del módulo dgram que se usa para establecer o borrar la opción de socket IP_MULTICAST_TTL que ayuda a especificar cuántos saltos de IP se permite que un paquete viaje a través de la multidifusión especificada. tráfico.

Sintaxis:

const socket.setMulticastTTL( ttl )

Parámetros: este método toma un valor entero que representa la cantidad de saltos de IP que un paquete puede viajar a través del tráfico de multidifusión especificado.

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

Ejemplo 1: Nombre de archivo: index.js

javascript

// Node.js program to demonstrate the
// server.setMulticastTTL()  API
 
// 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;
 
// Handling 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 IP_MULTICAST_TTL socket option
  // and specifying the number of IP hopes
  // by using the setMulticastTTL() method
  server.setMulticastTTL(144);
});
 
// 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
// server.setMulticastTTL()  API
 
// Importing dgram module
var dgram = require('dgram');
 
// Creating and initializing client
// and server socket
var client = dgram.createSocket("udp4");
var server = dgram.createSocket("udp4");
 
// Handling the message event
server.on("message", function (msg) {
 
  // Displaying the client message
  process.stdout.write("UDP String: "
                       + msg + "\n");
 
  // Exiting process
  process.exit();
 
});
 
// Handling 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 IP_MULTICAST_TTL socket option
   // and specifying the number of IP hopes
   // by using the setMulticastTTL() method
   server.setMulticastTTL(255);
});
 
// Client sending message to server
client.send("Hello", 0, 7,
    1234, "localhost");

Ejecute el archivo index.js con el siguiente comando:

node index.js

Producción:

server listening 0.0.0.0:1234
UDP String: Hello

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

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 *