owntone-server/src/mdns_avahi.h
Julien BLACHE 3ec2cc0f00 Stop the TXT record encoding madness
Use a proper string array to pass the TXT record fields, get rid of the
encoding stuff.

Changes the plugin API.
2009-04-19 19:37:41 +02:00

17 lines
264 B
C

#ifndef __MDNS_AVAHI_H__
#define __MDNS_AVAHI_H__
/* mDNS interface functions */
/* Call only from the main thread */
int
mdns_init(void);
void
mdns_deinit(void);
int
mdns_register(char *name, char *type, int port, char **txt);
#endif /* !__MDNS_AVAHI_H__ */