00001 #ifndef _ZEROCONF_H_ 00002 #define _ZEROCONF_H_ 00003 00004 int getZeroconfHostPort(CPhidgetRemoteHandle networkInfo); 00005 int cancelPendingZeroconfLookups(CPhidgetRemoteHandle networkInfo); 00006 int refreshZeroconfSBC(CPhidgetSBCHandle sbc); 00007 int refreshZeroconfPhidget(CPhidgetHandle phid); 00008 int InitializeZeroconf(); 00009 int UninitializeZeroconf(); 00010 00011 /* Internal version of .local lookups for SBC */ 00012 #ifdef ZEROCONF_LOOKUP 00013 struct hostent * 00014 mdns_gethostbyname (const char *name); 00015 struct hostent * 00016 mdns_gethostbyname2 (const char *name, int af); 00017 #endif 00018 00019 #endif