diff -r 732576fa8a0d -r 6d1392a3e0a6 Bonjour/MYBonjourBrowser.h --- a/Bonjour/MYBonjourBrowser.h Mon Apr 27 09:03:56 2009 -0700 +++ b/Bonjour/MYBonjourBrowser.h Tue Jun 23 13:52:28 2009 -0700 @@ -7,6 +7,7 @@ // #import "MYDNSService.h" +@class MYBonjourRegistration; /** Searches for Bonjour services of a specific type. */ @@ -17,6 +18,8 @@ BOOL _browsing; Class _serviceClass; NSMutableSet *_services, *_addServices, *_rmvServices; + BOOL _pendingUpdate; + MYBonjourRegistration *_myRegistration; } /** Initializes a new BonjourBrowser. @@ -37,4 +40,10 @@ to a subclass of that. */ @property Class serviceClass; +/** My own registration for this service type. + This object is created on demand and won't be started up until you tell it to. + Before starting it, you'll need to set its port, and optionally its name. + Your own registration will _not_ be visible in the set of services.*/ +@property (readonly) MYBonjourRegistration *myRegistration; + @end