Lines Matching refs:hostname
59 def __init__(self, host, hostname, domain='local'):
63 hostname and a domain that defaults to 'local'. The ZeroconfDaemon will
68 @param hostname: A string representing the hostname
71 self._hostname = hostname
108 def hostname(self):
109 """The hostname part within a domain."""
115 """The domain where the given hostname is running."""
121 """The full hostname designation including host and domain name."""
237 daemon is running, "hostname.domain".
276 def register_A(self, hostname, ip_addr):
281 @param hostname: The full host name, for example, "somehost.local".
284 if not hostname in self._a_records:
285 self._a_records[hostname] = []
286 self._a_records[hostname].append(socket.inet_aton(ip_addr))
313 A domain pointer record is simply a pointer to a hostname on the domain.
317 @param destination: The hostname inside the given domain, for example,