]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/conf.c
Remove support for ZeroConf/Bonjour/Rendezvous service registration
[ngircd-alex.git] / src / ngircd / conf.c
index 02f5520f6657797a092703276311d77a7d981b28..32846faa052002f068b41cf628ebc15d71bfb60a 100644 (file)
@@ -355,7 +355,6 @@ Conf_Test( void )
        printf("  DNS = %s\n", yesno_to_str(Conf_DNS));
        printf("  Ident = %s\n", yesno_to_str(Conf_Ident));
        printf("  PAM = %s\n", yesno_to_str(Conf_PAM));
-       printf("  ZeroConf = %s\n", yesno_to_str(Conf_ZeroConf));
        puts("");
 
        opers_puts();
@@ -577,11 +576,6 @@ Set_Defaults_Optional(void)
 #else
        Conf_PAM = false;
 #endif
-#ifdef ZEROCONF
-       Conf_ZeroConf = true;
-#else
-       Conf_ZeroConf = false;
-#endif
 }
 
 
@@ -937,10 +931,6 @@ CheckLegacyNoOption(const char *Var, const char *Arg)
                Conf_PAM = !Check_ArgIsTrue(Arg);
                return true;
        }
-       if(strcasecmp(Var, "NoZeroConf") == 0) {
-               Conf_ZeroConf = !Check_ArgIsTrue(Arg);
-               return true;
-       }
        return false;
 }
 
@@ -1278,11 +1268,6 @@ Handle_FEATURES(int Line, char *Var, char *Arg)
                WarnPAM(Line);
                return;
        }
-       if(strcasecmp(Var, "ZeroConf") == 0) {
-               /* register services using ZeroConf */
-               Conf_ZeroConf = Check_ArgIsTrue(Arg);
-               return;
-       }
 }
 
 static void