Closed jerblack closed 6 years ago
Actually, by default it uses both IPv4 and IPv6.
Try zc = aiozeroconf.Zeroconf(loop, address_family = [netifaces.AF_INET])
To limit to IPv4
The original package only uses IPv4
Also
zc = aiozeroconf.Zeroconf(loop, address_family = [socket.AF_INET])
Can I close this issue?
Hi, thanks for enabling your issue tracker. I am unable to use aiozeroconf on WIndows at the moment. If I execute the code below, I get an
AttributeError
. The three lines below are all I need to see an error.Traceback
I notice you are using IPv6 by default, but the implementation of new_socket in zeroconf only appears to use IPv4. Do you have documentation on other defaults or method signatures you changed from zeroconf to your fork?