El método socket.setTTL() 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_TTL que ayuda a especificar cuántos saltos de IP se le permite a un paquete viajar a través del especificado. enrutador o puerta de enlace.
Sintaxis:
const socket.setTTL( 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 enrutador o la puerta de enlace especificados.
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.setTTL() 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 IP_TTL socket option // and specifying the number of IP hopes // by using the setTTL() method server.setTTL(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.setTTL() 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 IP_TTL socket option // and specifying the number of IP hopes // by using the setTTL() method server.setTTL(144); }); // 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_setttl_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