使用 SSDP 搜索 UPnP 设备

发布于 2024-11-06 00:33:01 字数 105 浏览 1 评论 0原文

我想在网络上搜索我的媒体播放器。我认为它是使用 SSDP m-search 完成的,对吗?

另外,当我打开设备时,它会广播其可用性吗?我该如何收听该广播,以及如何发送移动搜索查询?

I want to search for my media player on the network. Am I right in thinking it is done using SSDP m-search?

Also, when I switch the device on, will it broadcast its availability? How do I go about listening for that broadcast, and how do I send the m-search query?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

╭ゆ眷念 2024-11-13 00:33:01

我想在网络上搜索我的媒体播放器。我认为它是使用 SSDP m-search 完成的吗?

是的。

此外,当我打开设备时,它会广播其可用性吗?

是的

我如何收听该广播,以及如何发送移动搜索查询?

您需要绑定到 UDP 多播组 239.255.255.250:1900M-SEARCH 查询被发送到同一地址。

I want to search for my media player on the network. Am I right in thinking it is done using SSDP m-search?

Yes.

Also, when I switch the device on, will it broadcast its availability?

Yes

How do I go about listening for that broadcast, and how do I send the m-search query?

You need to bind to the UDP multicast group 239.255.255.250:1900. The M-SEARCH query is sent to the same address.

水染的天色ゝ 2024-11-13 00:33:01

两个都。

一般来说,UPnP 设备会不时地通过 NOTIFY 消息通告自己。

同时,其他设备可以广播 M-SEARCH 消息来询问网络上的本地设备是否满足其查询,如果满足,将/应该导致这些设备再次重新通告自己。

所以是的...您可以通过 M-SEARCH 消息搜索您的媒体播放器,寻找 urn:schemas-upnp-org:device:MediaRenderer:1

至于如何发送 M-SEARCH 查询... UDP 多播是 SSDP 使用的协议,因此通过该协议发送广播消息取决于语言和类型。您正在使用的库。

Both.

In general, a UPnP device will advertise itself from time to time via a NOTIFY message.

At the same time, other devices can broadcast an M-SEARCH message to ask local devices on the network if they meet it's query, and if so, will/should cause those devices to re-advertise themselves again.

So yes... you could do a search for your media player via an M-SEARCH message, looking for a urn:schemas-upnp-org:device:MediaRenderer:1

As for how you send an M-SEARCH query... UDP multicast is the protocol SSDP uses, so sending a broadcast message via that depends on the language & libraries you are using.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文