Lines Matching refs:domain
32 // It is sending out target strings that don't follow the "domain name" format.
138 logger1.severe("bad domain name: possible circular name detected. Bad offset: 0x" + Integer.toHexString(index) + " at 0x" + Integer.toHexString(pos - 2));
271 String domain = _messageInputStream.readName();
279 return DNSQuestion.newQuestion(domain, type, recordClass, unique);
283 String domain = _messageInputStream.readName();
286 logger.log(Level.SEVERE, "Could not find record type. domain: " + domain + "\n" + this.print(true));
291 logger.log(Level.SEVERE, "Could not find record class. domain: " + domain + " type: " + type + "\n" + this.print(true));
300 rec = new DNSRecord.IPv4Address(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len));
303 rec = new DNSRecord.IPv6Address(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len));
310 rec = new DNSRecord.Pointer(domain, recordClass, unique, ttl, service);
312 logger.log(Level.WARNING, "PTR record of class: " + recordClass + ", there was a problem reading the service name of the answer for domain:" + domain);
316 rec = new DNSRecord.Text(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len));
324 // It is sending out target strings that don't follow the "domain name" format.
331 rec = new DNSRecord.Service(domain, recordClass, unique, ttl, priority, weight, port, target);
339 rec = new DNSRecord.HostInformation(domain, recordClass, unique, ttl, cpu, os);