El método socket.connect() es una interfaz de programación de aplicaciones incorporada de clase Socket dentro del módulo dgram que se utiliza para conectar el servidor en particular a un puerto y una dirección en particular.
Sintaxis:
const socket.connect(port[, address][, callback])
Parámetros: Este método acepta los siguientes parámetros:
- puerto: este parámetro contiene el número de puerto.
- dirección: este parámetro contiene la información de la dirección del servidor.
- devolución de llamada: este parámetro contiene la función de devolución de llamada para operaciones posteriores.
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.connect() 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(); }) // Binding server with port .bind(1234, () => { // Getting the address information // for the server by using // address method const address = server.address() // Display the result console.log(address); }); // Connecting the server with particular local host // and address by using connect() method server.connect(1234, "localhost", () => { console.log("connected") }) // Client sending message to server client.send("Hello", 0, 7, 1234, "localhost");
Producción:
{ address: '0.0.0.0', family: 'IPv4', port: 1234 } connected UDP String: Hello
Ejemplo 2: Nombre de archivo: index.js
Javascript
// Node.js program to demonstrate the // server.connect() 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', () => { // 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, () => { // Adding a multicast address for others to join server.addMembership('224.0.0.114'); }); // Connecting the server with particular local host // and address by using connect() method server.connect(1234, "localhost", () => { console.log("connected") }) // Client sending message to server client.send("Hello", 0, 7, 1234, "localhost");
Producción:
server listening 0.0.0.0:1234 connected 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_connect_port_address_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