diff options
Diffstat (limited to 'src/zeroconf.c')
-rw-r--r-- | src/zeroconf.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/zeroconf.c b/src/zeroconf.c index 585c6e2bf..6dca7e10b 100644 --- a/src/zeroconf.c +++ b/src/zeroconf.c @@ -549,6 +549,10 @@ void initZeroconf(void) { const char* serviceName = SERVICE_NAME; ConfigParam *param; + int enabled = getBoolConfigParam(CONF_ZEROCONF_ENABLED); + + if (enabled != -1 && enabled != 1) + return; param = getConfigParam(CONF_ZEROCONF_NAME); @@ -566,6 +570,11 @@ void initZeroconf(void) void finishZeroconf(void) { + int enabled = getBoolConfigParam(CONF_ZEROCONF_ENABLED); + + if (enabled != -1 && enabled != 1) + return; + #ifdef HAVE_AVAHI DEBUG( "Avahi: Shutting down interface\n" ); deregisterIO( &zeroConfIo ); |