mirror of
https://git.code.sf.net/p/minidlna/git
synced 2025-03-30 04:08:05 +00:00
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.
10 lines
257 B
C
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
|