socket.setMulticastInterface()方法是dgram模塊中Socket類的內置應用程序編程接口,用於將默認的正在進行的多播接口設置為套接字。
用法:
const socket.setMulticastInterface( multicastInterface )
參數:此方法將代表多播接口的字符串作為參數。
返回值:此方法不返回任何值。
範例1: 文件名:index.js
Javascript
// Node.js program to demonstrate the
// socket.setMulticastInterface() 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();
})
.bind(1234, () => {
// Setting multicast interface in the socket
server.setMulticastInterface('::%eth1');
});
// Client sending message to server
client.send("Hello", 0, 7, 1234, "localhost");
輸出:
UDP String:Hello
範例2: 文件名:index.js
Javascript
// Node.js program to demonstrate the
// socket.setMulticastInterface() 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, () => {
// Setting multicast interface in the socket
// by using setMulticastInterface() method
server.setMulticastInterface('::%eth1');
});
// Client sending message to server
client.send("Hello", 0, 7, 1234, "localhost");
輸出:
server listening 0.0.0.0:1234 UDP String:Hello
使用以下命令運行index.js文件:
node index.js
相關用法
- Node.js console.timeLog()用法及代碼示例
- Node.js fs.fsyncSync()用法及代碼示例
- Node.js process.nextTick()用法及代碼示例
- Node.js GM charcoal()用法及代碼示例
- Node.js GM blur()用法及代碼示例
- Node.js GM sharpen()用法及代碼示例
- Node.js GM drawLine()用法及代碼示例
- Node.js GM drawArc()用法及代碼示例
- Node.js GM drawPolyline()用法及代碼示例
- Node.js GM drawBezier()用法及代碼示例
- Node.js GM drawCircle()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node.js socket.setMulticastInterface() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。