使用Zeroconf Python的UpdateTXTRecord

时间:2018-12-14 18:16:18

标签: python zeroconf

我正在使用python zeroconf。我可以注册Zeroconf服务,但我想更新TXT描述,以便Swift中的didUpdateTXTRecord将获取更改,而不必每次都注销并注册服务。

这是我的代码:

desc = {'path': '/~paulsm/'}
info = ServiceInfo("_http._tcp.local.",
                   "Paul's Test Web Site._http._tcp.local.",
                   socket.inet_aton("127.0.0.1"), 80, 0, 0,
                   desc, "ash-2.local.")

zeroconf = Zeroconf()

zeroconf.register_service(info)

desc = {'path': '/~andrew/'}

要使新的desc更新到ZeroConf上需要做什么?

0 个答案:

没有答案