blob: d8cd4c593068487900f63002a0b9cc41351d675e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _ZEROCONF_H_
#define _ZEROCONF_H_
int getZeroconfHostPort(CPhidgetRemoteHandle networkInfo);
int cancelPendingZeroconfLookups(CPhidgetRemoteHandle networkInfo);
int refreshZeroconfSBC(CPhidgetSBCHandle sbc);
int refreshZeroconfPhidget(CPhidgetHandle phid);
int InitializeZeroconf();
int UninitializeZeroconf();
/* Internal version of .local lookups for SBC */
#ifdef ZEROCONF_LOOKUP
struct hostent *
mdns_gethostbyname (const char *name);
struct hostent *
mdns_gethostbyname2 (const char *name, int af);
#endif
#endif
|