Lines Matching refs:host
25 def avahi_config(options, src_file='/etc/avahi/avahi-daemon.conf', host=None): argument
41 run = utils.run if host is None else host.run
64 def avahi_ping(host=None): argument
77 host=host, timeout_seconds=2,
83 def avahi_start(config_file=None, host=None): argument
94 run = utils.run if host is None else host.run
102 if avahi_ping(host=host):
108 def avahi_stop(ignore_status=False, host=None): argument
115 run = utils.run if host is None else host.run
119 def avahi_start_on_iface(iface, host=None): argument
126 run = utils.run if host is None else host.run
129 conf = avahi_config(opts, host=host)
130 avahi_start(config_file=conf, host=host)
134 def avahi_get_hostname(host=None): argument
143 host=host, timeout_seconds=2, tolerate_failures=True)
147 def avahi_get_domain_name(host=None): argument
156 host=host, timeout_seconds=2, tolerate_failures=True)
160 def avahi_browse(host=None, ignore_local=True): argument
181 run = utils.run if host is None else host.run