我正在尝试实现一个 UPnP 发现服务工具(SSDP 协议),我在这篇文章之后在 python 中做了类似的事情:https ://www.electricmonk.nl/log/2016/07/05/exploring-upnp-with- python/并且我想将它移植到节点(v。8.6.0)和打字稿但是当我尝试发送消息(socket.send(...)
)时出现以下错误:
{ Error: send EADDRNOTAVAIL 239.255.255.250:1900
at Object._errnoException (util.js:1019:11)
at _exceptionWithHostPort (util.js:1041:20)
at SendWrap.afterSend [as oncomplete] (dgram.js:475:11)
code: 'EADDRNOTAVAIL',
errno: 'EADDRNOTAVAIL',
syscall: 'send',
address: '239.255.255.250',
port: 1900 }
我找到了一个节点的代码片段,这使得这个确切的事情(https://coolaj86.com/articles/adventures-in-upnp-with-node-js/),我认为我的代码是相当的但是我看不出为什么我的代码不起作用
const dgram = require('dgram');
const socket = dgram.createSocket('udp4');
let msg_txt = 'M-SEARCH * HTTP/1.1\r\n' +
'HOST:239.255.255.250:1900\r\n' +
'ST:upnp:rootdevice\r\n' +
'MX:2\r\n' +
'MAN:"ssdp:discover"\r\n\r\n';
const message = Buffer.from(msg_txt);
socket.on('message', (msg: Buffer, info: any) => {
console.log(msg.toString());
});
socket.bind({
address: '239.255.255.250',
port: 1900
}, (err) => {
!!err && console.error(err);
});
socket.on('listening', () => {
console.log('Sending msg...');
socket.send(message, 0, message.length, 1900, '239.255.255.250', (err) => {
!!err && console.error(err); // err != null
});
});
我怀疑这是一个典型的单行问题,但过了一段时间我找不到它,欢迎任何帮助。