Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

组播bind函数对于第二个参数有何限制?

$
0
0

//获取组播消息 var dgram = require(“dgram”); var client = dgram.createSocket(“udp4”); client.bind(SER_PORT,LOCAL_ADDR); client.on(‘message’,function(mag,rinfo){ … }); … bind函数的第二个参数,在本地写成"127.0.0.1"可以获取组播message,部署到服务器就接收不到组播message? 改成"0.0.0.1"就可以了.为什么?


Viewing all articles
Browse latest Browse all 14821

Trending Articles