Método Node.js dgram.createSocket()

El método dgram.createSocket() es una interfaz de programación de aplicaciones integrada dentro del módulo dgram que se utiliza para crear el objeto dgram.socket.

Sintaxis:

const dgram.createSocket(options[, callback])

Parámetros: Este método toma el siguiente parámetro:

  • opciones: utilizará una de las siguientes opciones  :
    • tipo: La familia de socket.
    • reuseAddr: valor booleano si la dirección ha sido reutilizada.
    • ipv6Only: establecer ipv6Only en verdadero desactivará la compatibilidad con doble pila.
    • recvBufferSize: establece el valor del socket SO_RCVBUF.
    • sendBufferSize: establece el valor del socket SO_SNDBUF.
    • búsqueda: función de búsqueda personalizada.
  • devolución de llamada: función de devolución de llamada para operaciones posteriores.

Valor devuelto: este método devuelve el objeto de dgram.socket.

Ejemplo 1: Nombre de archivo: index.js

Javascript

// Node.js program to demonstrate the
// dgram.createSocket() method
 
// importing dgram module
var dgram = require('dgram');
 
// Creating and initializing client
// and server socket by using
// createSocket() method
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();
})
    // Binding server with port
    .bind(1234, () => {
 
        // Setting the Send buffer size
        // by using setSendBufferSize() method
        server.setSendBufferSize(12345);
 
        // Getting the receive buffer size
        // by using getSendBufferSize() method
        const size = server.getSendBufferSize();
 
        // Display the result
        console.log(size);
 
    });
 
// Client sending message to server
client.send("Hello", 0, 7, 1234, "localhost");

Producción:

12345
UDP String: Hello

Ejemplo 2: Nombre de archivo: index.js

Javascript

// Node.js program to demonstrate the
// dgram.createSocket() method
 
// Importing dgram module
var dgram = require('dgram');
 
// Creating and initializing client
// and server socket by using
// createSocket() method
var client = dgram.createSocket("udp4", () => {
    console.log("client is created");
});
var server = dgram.createSocket("udp4", () => {
    console.log("server is created");
});
 
// 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', () => {
 
    // Getting address information
    // for the server
    const address = server.address();
 
    // Display the result
    console.log(`server listening
    ${address.address}:${address.port}`);
 
});
 
// Binding server with port address
// by using bind() method
server.bind(1234, () => {
 
    // Setting the Send buffer size
    // by using setSendBufferSize() method
    server.setSendBufferSize(1234567);
 
    // Getting the Send buffer size
    // by using getSendBufferSize() method
    const size = server.getSendBufferSize();
 
    // Display the result
    console.log(size);
});
 
// Client sending message to server
client.send("Hello", 0, 7, 1234, "localhost");

Producción:

server listening 0.0.0.0:1234
1234567
server is created
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_dgram_createsocket_options_callback

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 *