// // MDNSManager.h // Moonlight // // Created by Diego Waxemberg on 10/14/14. // Copyright (c) 2014 Moonlight Stream. All rights reserved. // #import @protocol MDNSCallback - (void) updateHosts:(NSArray*)hosts; @end @interface MDNSManager : NSObject @property id callback; - (id) initWithCallback:(id) callback; - (void) searchForHosts; - (void) stopSearching; @end