HomeSort by relevance Sort by last modified time
    Searched refs:DNAME (Results 1 - 6 of 6) sorted by null

  /external/smack/src/org/xbill/DNS/
DNAMERecord.java 6 * DNAME Record - maps a nonterminal alias (subtree) to a different domain
24 * @param alias The name to which the DNAME alias points
28 super(name, Type.DNAME, dclass, ttl, alias, "alias");
32 * Gets the target of the DNAME Record
39 /** Gets the alias specified by the DNAME Record */
SetResponse.java 47 * The Cache/Zone found a DNAME when looking for the name.
50 static final int DNAME = 5;
93 case DNAME:
142 /** Is the result of the lookup a DNAME? */
145 return (type == DNAME);
172 * If the query encountered a DNAME, return it.
196 case DNAME: return "DNAME: " + data;
Type.java 130 public static final int DNAME = 39;
265 types.add(DNAME, "DNAME", new DNAMERecord());
Cache.java 432 * Otherwise, look for a DNAME.
475 element = oneElement(tname, types, Type.DNAME, minCred);
479 return new SetResponse(SetResponse.DNAME,
647 } else if (type == Type.DNAME && curname.subdomain(name)) {
648 DNAMERecord dname; local
651 response = new SetResponse(SetResponse.DNAME,
653 dname = (DNAMERecord) answers[i].first();
655 curname = curname.fromDNAME(dname);
Zone.java 380 * Otherwise, look for a DNAME.
394 rrset = oneRRset(types, Type.DNAME);
396 return new SetResponse(SetResponse.DNAME,
Generator.java 52 return (type == Type.PTR || type == Type.CNAME || type == Type.DNAME ||
64 * PTR, CNAME, DNAME, A, AAAA, and NS.

Completed in 100 milliseconds