1
0
mirror of https://git.code.sf.net/p/minidlna/git synced 2025-03-30 04:08:05 +00:00
Files
minidlna/avahi.h
Justin Maggard 0575299a87 tivo: Add Avahi support
TiVo Bolt doesn't support the old TiVo Beacon discovery mechanism, so
we need to support Bonjour discovery now.  Use Avahi if it's available.
2017-04-28 01:18:53 -07:00

10 lines
257 B
C

#include "config.h"
#if defined(TIVO_SUPPORT) && defined(HAVE_AVAHI)
void tivo_bonjour_register(void);
void tivo_bonjour_unregister(void);
#else
static inline void tivo_bonjour_register(void) {};
static inline void tivo_bonjour_unregister(void) {};
#endif