Zeroconf和Python
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Zeroconf和Python相关的知识,希望对你有一定的参考价值。
taken from http://www.amk.ca/python/zeroconf
import Zeroconf import socket server = Zeroconf.Zeroconf() # Get local IP address local_ip = socket.gethostbyname(socket.gethostname()) local_ip = socket.inet_aton(local_ip) svc1 = Zeroconf.ServiceInfo('_durus._tcp.local.', 'Database 1._durus._tcp.local.', address = local_ip, port = 2972, weight = 0, priority=0, properties = {'description': 'Departmental server'} ) server.registerService(svc1)
以上是关于Zeroconf和Python的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Mono.Zeroconf 制作 AirPlay 接收器