mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-02 10:33:23 -05:00
3ec2cc0f00
Use a proper string array to pass the TXT record fields, get rid of the encoding stuff. Changes the plugin API.
17 lines
264 B
C
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__ */
|