Lines Matching refs:config

218     private static SLPConfig config;		// handles system properties  field in slpd
312 config = initializeSLPConfig(); in main()
322 synchronized (config) { in main()
323 config.log = log; in main()
379 new RequestHandler(System.in, System.out, config); in start()
387 config.getLoopback()); in start()
406 Vector interfaces = config.getInterfaces(); in start()
425 if (config.isDA()) { in start()
427 config.getLocalHost()); in start()
434 Vector serverScopes = config.getSAConfiguredScopes(); in start()
435 Vector daAttributes = config.getDAAttributes(); in start()
436 Vector saAttributes = config.getSAAttributes(); in start()
440 if (config.regTest() || in start()
441 config.traceMsg() || in start()
442 config.traceDrop() || in start()
443 config.traceDATraffic()) { in start()
445 config.writeLog((config.isDA() ? "hello_da":"hello"), in start()
449 (config.isDA() ? in start()
455 if (config.isV1Supported()) { in start()
456 SLPV1Manager.start(config, daTable, table); in start()
487 table.findDAScopes(config.getSAConfiguredScopes()); in daemonIsDA()
489 Vector interfaces = config.getInterfaces(); in daemonIsDA()
531 config.getLocalHost().getHostAddress(), in stopDA()
539 config.getSAConfiguredScopes(), in stopDA()
544 DAAdvertiser daadv = new DAAdvertiser(config.getLocalHost(), in stopDA()
566 config.getLocalHost().getHostAddress(), in stopSA()
571 config.getLocale(), in stopSA()
573 config.getSAConfiguredScopes(), in stopSA()
583 Transact.transactTCPMsg(config.getLoopback(), advert, false); in stopSA()
586 config.writeLog("slpd_sa_stop_failure", in stopSA()
595 config.writeLog("slpd_sa_stop_failure", in stopSA()
658 config.isSA = true; in initializeSLPConfig()