We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 15fa7fd + e589895 commit 2d1c63cCopy full SHA for 2d1c63c
1 file changed
zeroconf.py
@@ -1597,7 +1597,9 @@ def get_all_addresses(address_family):
1597
addr['addr']
1598
for iface in netifaces.interfaces()
1599
for addr in netifaces.ifaddresses(iface).get(address_family, [])
1600
- if addr.get('netmask') != HOST_ONLY_NETWORK_MASK
+ # windows compatibility --> https://github.com/jstasiak/python-zeroconf/issues/84
1601
+ # testing on my osx, commenting this out has no effect on the returned list of addresses
1602
+ # if addr.get('netmask') != HOST_ONLY_NETWORK_MASK
1603
))
1604
1605
0 commit comments