This is fork of pyzeroconf, Multicast DNS Service Discovery for Python, originally by Paul Scott-Murphy (https://github.com/paulsm/pyzeroconf), modified by William McBrine (https://github.com/wmcbrine/pyzeroconf).
The original William McBrine's fork note:
This fork is used in all of my TiVo-related projects: HME for Python (and therefore HME/VLC), Network Remote, Remote Proxy, and pyTivo. Before this, I was tracking the changes for zeroconf.py in three separate repos. I figured I should have an authoritative source. Although I make changes based on my experience with TiVos, I expect that they're generally applicable. This version also includes patches found on the now-defunct (?) Launchpad repo of pyzeroconf, and elsewhere around the net -- not always well-documented, sorry.
Compatible with:
- Bonjour
- Avahi
Compared to some other Zeroconf/Bonjour/Avahi Python packages, python-zeroconf:
- isn't tied to Bonjour or Avahi
- doesn't use D-Bus
- doesn't force you to use particular event loop or Twisted
- is pip-installable
- has PyPI distribution
- CPython 3.6+
- PyPy3 7.2+
This project's versions follow the following pattern: MAJOR.MINOR.PATCH.
- MAJOR version has been 0 so far
- MINOR version is incremented on backward incompatible changes
- PATCH version is incremented on backward compatible changes
There are some people using this package. I don't actively use it and as such any help I can offer with regard to any issues is very limited.
IPv6 support is relatively new and currently limited, specifically:
- InterfaceChoice.All is an alias for InterfaceChoice.Default on non-POSIX systems.
- On Windows specific interfaces can only be requested as interface indexes, not as IP addresses.
- Dual-stack IPv6 sockets are used, which may not be supported everywhere (some BSD variants do not have them).
- Listening on localhost (::1) does not work. Help with understanding why is appreciated.
- PyPI page https://pypi.python.org/pypi/zeroconf
- GitHub project https://github.com/jstasiak/python-zeroconf
The easiest way to install python-zeroconf is using pip:
pip install zeroconf
Here's an example of browsing for a service:
from zeroconf import ServiceBrowser, Zeroconf
class MyListener:
def remove_service(self, zeroconf, type, name):
print("Service %s removed" % (name,))
def add_service(self, zeroconf, type, name):
info = zeroconf.get_service_info(type, name)
print("Service %s added, service info: %s" % (name, info))
zeroconf = Zeroconf()
listener = MyListener()
browser = ServiceBrowser(zeroconf, "_http._tcp.local.", listener)
try:
input("Press enter to exit...\n\n")
finally:
zeroconf.close()
Note
Discovery and service registration use all available network interfaces by default.
If you want to customize that you need to specify interfaces
argument when
constructing Zeroconf
object (see the code for details).
If you don't know the name of the service you need to browse for, try:
from zeroconf import ZeroconfServiceTypes
print('\n'.join(ZeroconfServiceTypes.find()))
See examples directory for more.
BREAKING CHANGE: zeroconf.asyncio has been renamed zeroconf.aio (#503) @bdraco
The asyncio name could shadow system asyncio in some cases. If zeroconf is in sys.path, this would result in loading zeroconf.asyncio when system asyncio was intended.
BREAKING CHANGE: Update internal version check to match docs (3.6+) (#491) @bdraco
Python version eariler then 3.6 were likely broken with zeroconf already, however the version is now explictly checked.
BREAKING CHANGE: RecordUpdateListener now uses update_records instead of update_record (#419) @bdraco
This allows the listener to receive all the records that have been updated in a single transaction such as a packet or cache expiry.
update_record has been deprecated in favor of update_records A compatibility shim exists to ensure classes that use RecordUpdateListener as a base class continue to have update_record called, however they should be updated as soon as possible.
A new method update_records_complete is now called on each listener when all listeners have completed processing updates and the cache has been updated. This allows ServiceBrowsers to delay calling handlers until they are sure the cache has been updated as its a common pattern to call for ServiceInfo when a ServiceBrowser handler fires.
BREAKING CHANGE: Ensure listeners do not miss initial packets if Engine starts too quickly (#387) @bdraco
When manually creating a zeroconf.Engine object, it is no longer started automatically. It must manually be started by calling .start() on the created object.
The Engine thread is now started after all the listeners have been added to avoid a race condition where packets could be missed at startup.
BREAKING CHANGE: Remove DNSOutgoing.packet backwards compatibility (#569) @bdraco
DNSOutgoing.packet only returned a partial message when the DNSOutgoing contents exceeded _MAX_MSG_ABSOLUTE or _MAX_MSG_TYPICAL This was a legacy function that was replaced with .packets() which always returns a complete payload in #248 As packet() should not be used since it will end up missing data, it has been removed
TRAFFIC REDUCTION: Add support for handling QU questions (#621) @bdraco
Implements RFC 6762 sec 5.4: Questions Requesting Unicast Responses datatracker.ietf.org/doc/html/rfc6762#section-5.4
TRAFFIC REDUCTION: Protect the network against excessive packet flooding (#619) @bdraco
TRAFFIC REDUCTION: Suppress additionals when they are already in the answers section (#617) @bdraco
TRAFFIC REDUCTION: Avoid including additionals when the answer is suppressed by known-answer supression (#614) @bdraco
MAJOR BUG: Ensure matching PTR queries are returned with the ANY query (#618) @bdraco
MAJOR BUG: Fix lookup of uppercase names in registry (#597) @bdraco
If the ServiceInfo was registered with an uppercase name and the query was for a lowercase name, it would not be found and vice-versa.
MAJOR BUG: Ensure unicast responses can be sent to any source port (#598) @bdraco
Unicast responses were only being sent if the source port was 53, this prevented responses when testing with dig:
dig -p 5353 @224.0.0.251 media-12.local
The above query will now see a response
MAJOR BUG: Fix queries for AAAA records (#616) @bdraco
Eliminate aio sender thread (#622) @bdraco
Replace select loop with asyncio loop (#504) @bdraco
Add is_recent property to DNSRecord (#620) @bdraco
RFC 6762 defines recent as not multicast within one quarter of its TTL datatracker.ietf.org/doc/html/rfc6762#section-5.4
Breakout the query response handler into its own class (#615) @bdraco
Add the ability for ServiceInfo.dns_addresses to filter by address type (#612) @bdraco
Make DNSRecords hashable (#611) @bdraco
Allows storing them in a set for de-duplication
Needed to be able to check for duplicates to solve #604
Ensure the QU bit is set for probe queries (#609) @bdraco
The bit should be set per datatracker.ietf.org/doc/html/rfc6762#section-8.1
Log destination when sending packets (#606) @bdraco
Fix docs version to match readme (cpython 3.6+) (#602) @bdraco
Add ZeroconfServiceTypes to zeroconf.__all__ (#601) @bdraco
This class is in the readme, but is not exported by default
Add id_ param to allow setting the id in the DNSOutgoing constructor (#599) @bdraco
Add unicast property to DNSQuestion to determine if the QU bit is set (#593) @bdraco
Reduce branching in DNSOutgoing.add_answer_at_time (#592) @bdraco
Breakout DNSCache into zeroconf.cache (#568) @bdraco
Removed protected imports from zeroconf namespace (#567) @bdraco
Fix invalid typing in ServiceInfo._set_text (#554) @bdraco
Move QueryHandler and RecordManager handlers into zeroconf.handlers (#551) @bdraco
Move ServiceListener to zeroconf.services (#550) @bdraco
Move the ServiceRegistry into its own module (#549) @bdraco
Move ServiceStateChange to zeroconf.services (#548) @bdraco
Relocate core functions into zeroconf.core (#547) @bdraco
Breakout service classes into zeroconf.services (#544) @bdraco
Move service_type_name to zeroconf.utils.name (#543) @bdraco
Relocate DNS classes to zeroconf.dns (#541) @bdraco
Update zeroconf.aio import locations (#539) @bdraco
Move int2byte to zeroconf.utils.struct (#540) @bdraco
Breakout network utils into zeroconf.utils.net (#537) @bdraco
Move time utility functions into zeroconf.utils.time (#536) @bdraco
Avoid making DNSOutgoing aware of the Zeroconf object (#535) @bdraco
Move logger into zeroconf.logger (#533) @bdraco
Move exceptions into zeroconf.exceptions (#532) @bdraco
Move constants into const.py (#531) @bdraco
Move asyncio utils into zeroconf.utils.aio (#530) @bdraco
Move ipversion auto detection code into its own function (#524) @bdraco
Breaking change: Update python compatibility as PyPy3 7.2 is required (#523) @bdraco
Remove broad exception catch from RecordManager.remove_listener (#517) @bdraco
Small cleanups to RecordManager.add_listener (#516) @bdraco
Move RecordUpdateListener management into RecordManager (#514) @bdraco
Break out record updating into RecordManager (#512) @bdraco
Remove uneeded wait in the Engine thread (#511) @bdraco
Extract code for handling queries into QueryHandler (#507) @bdraco
Set the TC bit for query packets where the known answers span multiple packets (#494) @bdraco
Ensure packets are properly seperated when exceeding maximum size (#498) @bdraco
Ensure that questions that exceed the max packet size are moved to the next packet. This fixes DNSQuestions being sent in multiple packets in violation of: datatracker.ietf.org/doc/html/rfc6762#section-7.2
Ensure only one resource record is sent when a record exceeds _MAX_MSG_TYPICAL datatracker.ietf.org/doc/html/rfc6762#section-17
Make a base class for DNSIncoming and DNSOutgoing (#497) @bdraco
Remove unused __ne__ code from Python 2 era (#492) @bdraco
Lint before testing in the CI (#488) @bdraco
Add AsyncServiceBrowser example (#487) @bdraco
Move threading daemon property into ServiceBrowser class (#486) @bdraco
Enable test_integration_with_listener_class test on PyPy (#485) @bdraco
AsyncServiceBrowser must recheck for handlers to call when holding condition (#483)
There was a short race condition window where the AsyncServiceBrowser could add to _handlers_to_call in the Engine thread, have the condition notify_all called, but since the AsyncServiceBrowser was not yet holding the condition it would not know to stop waiting and process the handlers to call.
Relocate ServiceBrowser wait time calculation to seperate function (#484) @bdraco
Eliminate the need to duplicate code between the ServiceBrowser and AsyncServiceBrowser to calculate the wait time.
Switch from using an asyncio.Event to asyncio.Condition for waiting (#482) @bdraco
ServiceBrowser must recheck for handlers to call when holding condition (#477) @bdraco
There was a short race condition window where the ServiceBrowser could add to _handlers_to_call in the Engine thread, have the condition notify_all called, but since the ServiceBrowser was not yet holding the condition it would not know to stop waiting and process the handlers to call.
Provide a helper function to convert milliseconds to seconds (#481) @bdraco
Fix AsyncServiceInfo.async_request not waiting long enough (#480) @bdraco
Add support for updating multiple records at once to ServiceInfo (#474) @bdraco
Narrow exception catch in DNSAddress.__repr__ to only expected exceptions (#473) @bdraco
Add test coverage to ensure ServiceInfo rejects expired records (#468) @bdraco
Reduce branching in service_type_name (#472) @bdraco
Fix flakey test_update_record (#470) @bdraco
Reduce branching in Zeroconf.handle_response (#467) @bdraco
Ensure PTR questions asked in uppercase are answered (#465) @bdraco
Clear cache between ServiceTypesQuery tests (#466) @bdraco
Break apart Zeroconf.handle_query to reduce branching (#462) @bdraco
Support for context managers in Zeroconf and AsyncZeroconf (#284) @shenek
Use constant for service type enumeration (#461) @bdraco
Reduce branching in Zeroconf.handle_response (#459) @bdraco
Reduce branching in Zeroconf.handle_query (#460) @bdraco
Enable pylint (#438) @bdraco
Trap OSError directly in Zeroconf.send instead of checking isinstance (#453) @bdraco
Disable protected-access on the ServiceBrowser usage of _handlers_lock (#452) @bdraco
Mark functions with too many branches in need of refactoring (#455) @bdraco
Disable pylint no-self-use check on abstract methods (#451) @bdraco
Use unique name in test_async_service_browser test (#450) @bdraco
Disable no-member check for WSAEINVAL false positive (#454) @bdraco
Mark methods used by asyncio without self use (#447) @bdraco
Extract _get_queue from zeroconf.asyncio._AsyncSender (#444) @bdraco
Fix redefining argument with the local name 'record' in ServiceInfo.update_record (#448) @bdraco
Remove unneeded-not in new_socket (#445) @bdraco
Disable broad except checks in places we still catch broad exceptions (#443) @bdraco
Merge _TYPE_CNAME and _TYPE_PTR comparison in DNSIncoming.read_others (#442) @bdraco
Convert unnecessary use of a comprehension to a list (#441) @bdraco
Remove unused now argument from ServiceInfo._process_record (#440) @bdraco
Disable pylint too-many-branches for functions that need refactoring (#439) @bdraco
Cleanup unused variables (#437) @bdraco
Cleanup unnecessary else after returns (#436) @bdraco
Add zeroconf.asyncio to the docs (#434) @bdraco
Fix warning when generating sphinx docs (#432) @bdraco
Implement an AsyncServiceBrowser to compliment the sync ServiceBrowser (#429) @bdraco
Seperate non-thread specific code from ServiceBrowser into _ServiceBrowserBase (#428) @bdraco
Remove is_type_unique as it is unused (#426)
Avoid checking the registry when answering requests for _services._dns-sd._udp.local. (#425) @bdraco
_services._dns-sd._udp.local. is a special case and should never be in the registry
Remove unused argument from ServiceInfo.dns_addresses (#423) @bdraco
Add methods to generate DNSRecords from ServiceInfo (#422) @bdraco
Seperate logic for consuming records in ServiceInfo (#421) @bdraco
Seperate query generation for ServiceBrowser (#420) @bdraco
Add async_request example with browse (#415) @bdraco
Add async_register_service/async_unregister_service example (#414) @bdraco
Add async_get_service_info to AsyncZeroconf and async_request to AsyncServiceInfo (#408) @bdraco
Add support for registering notify listeners (#409) @bdraco
Allow passing in a sync Zeroconf instance to AsyncZeroconf (#406) @bdraco
Use a dedicated thread for sending outgoing packets with asyncio (#404) @bdraco
Fix IPv6 setup under MacOS when binding to "" (#392) @bdraco
Ensure ZeroconfServiceTypes.find always cancels the ServiceBrowser (#389) @bdraco
There was a short window where the ServiceBrowser thread could be left running after Zeroconf is closed because the .join() was never waited for when a new Zeroconf object was created
Simplify DNSPointer processing in ServiceBrowser (#386) @bdraco
Ensure the cache is checked for name conflict after final service query with asyncio (#382) @bdraco
Complete ServiceInfo request as soon as all questions are answered (#380) @bdraco
Closes a small race condition where there were no questions to ask because the cache was populated in between checks
Coalesce browser questions scheduled at the same time (#379) @bdraco
Ensure duplicate packets do not trigger duplicate updates (#376) @bdraco
If TXT or SRV records update was already processed and then recieved again, it was possible for a second update to be called back in the ServiceBrowser
Only trigger a ServiceStateChange.Updated event when an ip address is added (#375) @bdraco
Fix RFC6762 Section 10.2 paragraph 2 compliance (#374) @bdraco
Reduce length of ServiceBrowser thread name with many types (#373) @bdraco
Remove Callable quoting (#371) @bdraco
Abstract check to see if a record matches a type the ServiceBrowser wants (#369) @bdraco
Reduce complexity of ServiceBrowser enqueue_callback (#368) @bdraco
Fix empty answers being added in ServiceInfo.request (#367) @bdraco
Ensure ServiceInfo populates all AAAA records (#366) @bdraco
Use get_all_by_details to ensure all records are loaded into addresses.
Only load A/AAAA records from cache once in load_from_cache if there is a SRV record present
Move duplicate code that checked if the ServiceInfo was complete into its own function
Remove black python 3.5 exception block (#365) @bdraco
Small cleanup of ServiceInfo.update_record (#364) @bdraco
Add new cache function get_all_by_details (#363) @bdraco When working with IPv6, multiple AAAA records can exist for a given host. get_by_details would only return the latest record in the cache.
Fix a case where the cache list can change during iteration
Small cleanups to asyncio tests (#362) @bdraco
Improve test coverage for name conflicts (#357) @bdraco
Return task objects created by AsyncZeroconf (#360) @nocarryr
Separated cache loading from I/O in ServiceInfo and fixed cache lookup (#356), thanks to J. Nick Koston.
The ServiceInfo class gained a load_from_cache() method to only fetch information from Zeroconf cache (if it exists) with no IO performed. Additionally this should reduce IO in cases where cache lookups were previously incorrectly failing.
- Some nice refactoring work including removal of the Reaper thread, thanks to J. Nick Koston.
- Fixed a Windows-specific The requested address is not valid in its context regression, thanks to Timothee ‘TTimo’ Besset and J. Nick Koston.
- Provided an asyncio-compatible service registration layer (in the zeroconf.asyncio module), thanks to J. Nick Koston.
- A single socket is used for listening on responding when InterfaceChoice.Default is chosen. Thanks to J. Nick Koston.
Backwards incompatible:
- Dropped Python 3.5 support
- Fixed the packet generation when multiple packets are necessary, previously invalid packets were generated sometimes. Patch thanks to J. Nick Koston.
- Fixed the IPv6 address rendering in the browser example, thanks to Alexey Vazhnov.
- Fixed a crash happening when a service is added or removed during handle_response and improved exception handling, thanks to J. Nick Koston.
- Loosened service name validation when receiving from the network this lets us handle some real world devices previously causing errors, thanks to J. Nick Koston.
- Enabled ignoring duplicated messages which decreases CPU usage, thanks to J. Nick Koston.
- Fixed spurious AttributeError: module 'unittest' has no attribute 'mock' in tests.
- Improved cache reaper performance significantly, thanks to J. Nick Koston.
- Added ServiceListener to __all__ as it's part of the public API, thanks to Justin Nesselrotte.
- Reduced a time an internal lock is held which should eliminate deadlocks in high-traffic networks, thanks to J. Nick Koston.
- Stopped asking questions we already have answers for in cache, thanks to Paul Daumlechner.
- Removed initial delay before querying for service info, thanks to Erik Montnemery.
- Fixed a resource leak connected to using ServiceBrowser with multiple types, thanks to J. Nick Koston.
- Improved Windows support when using socket errno checks, thanks to Sandy Patterson.
- Added support for passing text addresses to ServiceInfo.
- Improved logging (includes fixing an incorrect logging call)
- Improved Windows compatibility by using Adapter.index from ifaddr, thanks to PhilippSelenium.
- Improved Windows compatibility by stopping using socket.if_nameindex.
- Fixed an OS X edge case which should also eliminate a memory leak, thanks to Emil Styrke.
Technically backwards incompatible:
ifaddr
0.1.7 or newer is required now.
- Improved the logging situation (includes fixing a false-positive "packets() made no progress adding records", thanks to Greg Badros)
- Large multi-resource responses are now split into separate packets which fixes a bad mdns-repeater/ChromeCast Audio interaction ending with ChromeCast Audio crash (and possibly some others) and improves RFC 6762 compliance, thanks to Greg Badros
- Added a warning presented when the listener passed to ServiceBrowser lacks update_service() callback
- Added support for finding all services available in the browser example, thanks to Perry Kunder
Backwards incompatible:
- Removed previously deprecated ServiceInfo address constructor parameter and property
- Improved readability of logged incoming data, thanks to Erik Montnemery
- Threads are given unique names now to aid debugging, thanks to Erik Montnemery
- Fixed a regression where get_service_info() called within a listener add_service method would deadlock, timeout and incorrectly return None, fix thanks to Erik Montnemery, but Matt Saxon and Hmmbob were also involved in debugging it.
- Added support for multiple types to ServiceBrowser, thanks to J. Nick Koston
- Fixed a race condition where a listener gets a message before the lock is created, thanks to J. Nick Koston
- Fixed a performance regression introduced in 0.26.0, thanks to J. Nick Koston (this is close in spirit to an optimization made in 0.24.5 by the same author)
- Fixed a regression where service update listener wasn't called on IP address change (it's called on SRV/A/AAAA record changes now), thanks to Matt Saxon
Technically backwards incompatible:
- Service update hook is no longer called on service addition (service added hook is still called), this is related to the fix above
- Eliminated 5s hangup when calling Zeroconf.close(), thanks to Erik Montnemery
- Reverted uniqueness assertions when browsing, they caused a regression
Backwards incompatible:
- Rationalized handling of TXT records. Non-bytes values are converted to str and encoded to bytes using UTF-8 now, None values mean value-less attributes. When receiving TXT records no decoding is performed now, keys are always bytes and values are either bytes or None in value-less attributes.
- Fixed issues with shared records being used where they shouldn't be (TXT, SRV, A records are unique now), thanks to Matt Saxon
- Stopped unnecessarily excluding host-only interfaces from InterfaceChoice.all as they don't forbid multicast, thanks to Andreas Oberritter
- Fixed repr() of IPv6 DNSAddress, thanks to Aldo Hoeben
- Removed duplicate update messages sent to listeners, thanks to Matt Saxon
- Added support for cooperating responders, thanks to Matt Saxon
- Optimized handle_response cache check, thanks to J. Nick Koston
- Fixed memory leak in DNSCache, thanks to J. Nick Koston
- Fixed resetting TTL in DNSRecord.reset_ttl(), thanks to Matt Saxon
- Improved various DNS class' string representations, thanks to Jay Hogg
- Fixed import-time "TypeError: 'ellipsis' object is not iterable." on CPython 3.5.2
- Added support for AWDL interface on macOS (needed and used by the opendrop project but should be useful in general), thanks to Milan Stute
- Added missing type hints
- Applied some significant performance optimizations, thanks to Jaime van Kessel for the patch and to Ghostkeeper for performance measurements
- Fixed flushing outdated cache entries when incoming record is unique, thanks to Michael Hu
- Fixed handling updates of TXT records (they'd not get recorded previously), thanks to Michael Hu
- Added IPv6 support, thanks to Dmitry Tantsur
- Added additional recommended records to PTR responses, thanks to Scott Mertz
- Added handling of ENOTCONN being raised during shutdown when using Eventlet, thanks to Tamás Nepusz
- Included the py.typed marker in the package so that type checkers know to use type hints from the source code, thanks to Dmitry Tantsur
- Added support for MyListener call getting updates to service TXT records, thanks to Matt Saxon
- Added support for multiple addresses when publishing a service, getting/setting single address has become deprecated. Change thanks to Dmitry Tantsur
Backwards incompatible:
- Dropped Python 3.4 support
- A lot of maintenance work (tooling, typing coverage and improvements, spelling) done, thanks to Ville Skyttä
- Provided saner defaults in ServiceInfo's constructor, thanks to Jorge Miranda
- Fixed service removal packets not being sent on shutdown, thanks to Andrew Bonney
- Added a way to define TTL-s through ServiceInfo contructor parameters, thanks to Andrew Bonney
Technically backwards incompatible:
- Adjusted query intervals to match RFC 6762, thanks to Andrew Bonney
- Made default TTL-s match RFC 6762, thanks to Andrew Bonney
- This time really allowed incoming service names to contain underscores (patch released as part of 0.21.0 was defective)
- Fixed import-time typing-related TypeError when older typing version is used
- Fixed installation on Python 3.4 (we use typing now but there was no explicit dependency on it)
- Added an error message when importing the package using unsupported Python version
- Fixed TTL handling for published service
- Implemented unicast support
- Fixed WSL (Windows Subsystem for Linux) compatibility
- Fixed occasional UnboundLocalError issue
- Fixed UTF-8 multibyte name compression
- Switched from netifaces to ifaddr (pure Python)
- Allowed incoming service names to contain underscores
- Dropped support for Python 2 (this includes PyPy) and 3.3
- Fixed some class' equality operators
- ServiceBrowser entries are being refreshed when 'stale' now
- Cache returns new records first now instead of last
- Allowed installation with netifaces >= 0.10.6 (a bug that was concerning us got fixed)
- Technically backwards incompatible - restricted netifaces dependency version to work around a bug, see python-zeroconf#84 for details
- Dropped Python 2.6 support
- Improved error handling inside code executed when Zeroconf object is being closed
- Better Handling of DNS Incoming Packets parsing exceptions
- Many exceptions will now log a warning the first time they are seen
- Catch and log sendto() errors
- Fix/Implement duplicate name change
- Fix overly strict name validation introduced in 0.17.6
- Greatly improve handling of oversized packets including:
- Implement name compression per RFC1035
- Limit size of generated packets to 9000 bytes as per RFC6762
- Better handle over sized incoming packets
- Increased test coverage to 95%
- Many improvements to address race conditions and exceptions during ZC() startup and shutdown, thanks to: morpav, veawor, justingiorgi, herczy, stephenrauch
- Added more test coverage: strahlex, stephenrauch
- Stephen Rauch contributed:
- Speed up browser startup
- Add ZeroconfServiceTypes() query class to discover all advertised service types
- Add full validation for service names, types and subtypes
- Fix for subtype browsing
- Fix DNSHInfo support
- Fixed OpenBSD compatibility, thanks to Alessio Sergi
- Fixed race condition on ServiceBrowser startup, thanks to gbiddison
- Fixed installation on some Python 3 systems, thanks to Per Sandström
- Fixed "size change during iteration" bug on Python 3, thanks to gbiddison
- Fixed support for Linux kernel versions < 3.9 (thanks to Giovanni Harting and Luckydonald, GitHub pull request #26)
- Fixed DNSText repr on Python 3 (it'd crash when the text was longer than 10 bytes), thanks to Paulus Schoutsen for the patch, GitHub pull request #24
- Fixed installation on Python 3.4.3+ (was failing because of enum34 dependency which fails to install on 3.4.3+, changed to depend on enum-compat instead; thanks to Michael Brennan for the original patch, GitHub pull request #22)
- Fixed EADDRNOTAVAIL when attempting to use dummy network interfaces on Windows, thanks to daid
- Added some Python dependencies so it's not zero-dependencies anymore
- Improved exception handling (it'll be quieter now)
- Messages are listened to and sent using all available network interfaces by default (configurable); thanks to Marcus Müller
- Started using logging more freely
- Fixed a bug with binary strings as property values being converted to False (python-zeroconf#10); thanks to Dr. Seuss
- Added new
ServiceBrowser
event handler interface (see the examples) - PyPy3 now officially supported
- Fixed ServiceInfo repr on Python 3, thanks to Yordan Miladinov
- Set up Python logging and started using it
- Cleaned up code style (includes migrating from camel case to snake case)
- Fixed handling closed socket (GitHub #4)
- Forked by Jakub Stasiak
- Made Python 3 compatible
- Added setup script, made installable by pip and uploaded to PyPI
- Set up Travis build
- Reformatted the code and moved files around
- Stopped catching BaseException in several places, that could hide errors
- Marked threads as daemonic, they won't keep application alive now
- Fix for SOL_IP undefined on some systems - thanks Mike Erdely.
- Cleaned up examples.
- Lowercased module name.
- Various minor changes; see git for details.
- No longer compatible with Python 2.2. Only tested with 2.5-2.7.
- Fork by William McBrine.
- allow selection of binding interface
- typo fix - Thanks A. M. Kuchlingi
- removed all use of word 'Rendezvous' - this is an API change
- correction to comments for addListener method
- support for new record types seen from OS X - IPv6 address - hostinfo
- ignore unknown DNS record types
- fixes to name decoding
- works alongside other processes using port 5353 (e.g. on Mac OS X)
- tested against Mac OS X 10.3.2's mDNSResponder
- corrections to removal of list entries for service browser
- Jonathon Paisley contributed these corrections:
- always multicast replies, even when query is unicast
- correct a pointer encoding problem
- can now write records in any order
- traceback shown on failure
- better TXT record parsing
- server is now separate from name
- can cancel a service browser
- modified some unit tests to accommodate these changes
- remove all records on service unregistration
- fix DOS security problem with readName
- changed licensing to LGPL
- faster shutdown on engine
- pointer encoding of outgoing names
- ServiceBrowser now works
- new unit tests
- small improvements with unit tests
- added defined exception types
- new style objects
- fixed hostname/interface problem
- fixed socket timeout problem
- fixed add_service_listener() typo bug
- using select() for socket reads
- tested on Debian unstable with Python 2.2.2
- ensure case insensitivty on domain names
- support for unicast DNS queries
- added some unit tests
- added __ne__ adjuncts where required
- ensure names end in '.local.'
- timeout on receiving socket for clean shutdown
LGPL, see COPYING file for details.