![]() |
VOOZH | about |
The socket.setMulticastInterface() method is an inbuilt application programming interface of class Socket within dgram module which is used to set the default ongoing multicast interface into the socket.
Syntax:
const socket.setMulticastInterface( multicastInterface )
Parameters: This method takes the string representing the multicast interface as a parameter.
Return Value: This method does not return any value.
Example 1: In this example, we will see the use of socket.setMulticastInterface() Method
Filename: index.js
Output:
UDP String: Hello
Example 2: In this example, we will see the use of a socket.setMulticastInterface() Method
Filename: index.js
Output:
server listening 0.0.0.0:1234 UDP String: Hello
Run the index.js file using the following command:
node index.js