Home | History | Annotate | Download | only in avahi-python

Lines Matching full:domain

39 domain = "local"
66 global domain, use_CGI
68 browser = dbus.Interface(self.bus.get_object(avahi.DBUS_NAME, self.server.ServiceBrowserNew(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, stype, domain, dbus.UInt32(0))), avahi.DBUS_INTERFACE_SERVICE_BROWSER)
89 global domain
91 t = '<html><head><title>%s Zeroconf Bookmarks</title></head><body><h1>%s Zeroconf Bookmarks</h1>' % (domain, domain)
94 t += '<p>Sorry, no Zeroconf web services have been registered on the %s domain.</p>' % domain
115 def new_service(self, interface, protocol, name, type, domain, flags):
117 interface, protocol, name, type, domain, host, aprotocol, address, port, txt, flags = self.server.ResolveService(interface, protocol, name, type, domain, avahi.PROTO_UNSPEC, dbus.UInt32(0))
127 self.services[(interface, protocol, name, type, domain)] = (host, aprotocol, h, port, txt)
129 def remove_service(self, interface, protocol, name, type, domain):
131 del self.services[(interface, protocol, name, type, domain)]
150 print " -d --domain DOMAIN Specify the domain to browse"
154 opts, args = getopt.getopt(sys.argv[1:], "hct:p:a:HAd:", ["help", "cgi", "port=", "timeout=", "address=", "host-names", "addresses", "domain="])
180 if o in ("-d", "--domain"):
181 domain = a