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

  /external/smack/src/org/xbill/DNS/
TSIG.java 213 if (error != Rcode.BADTIME)
219 if (error == Rcode.NOERROR || error == Rcode.BADTIME)
264 if (error == Rcode.BADTIME) {
299 apply(m, Rcode.NOERROR, old);
344 Rcode.NOERROR, other);
360 * @return The result of the verification (as an Rcode)
361 * @see Rcode
369 return Rcode.FORMERR;
374 return Rcode.BADKEY
    [all...]
Rcode.java 11 public final class Rcode {
13 private static Mnemonic rcodes = new Mnemonic("DNS Rcode",
16 private static Mnemonic tsigrcodes = new Mnemonic("TSIG rcode",
103 Rcode() {}
105 /** Converts a numeric Rcode into a String */
111 /** Converts a numeric TSIG extended Rcode into a String */
117 /** Converts a String representation of an Rcode into its numeric value */
TSIGRecord.java 118 sb.append (Rcode.TSIGstring(error));
128 if (error == Rcode.BADTIME) {
ZoneTransferIn.java 533 if (response.getHeader().getRcode() == Rcode.NOERROR &&
539 if (error != Rcode.NOERROR)
546 int rcode = response.getRcode(); local
547 if (rcode != Rcode.NOERROR) {
549 rcode == Rcode.NOTIMP)
555 fail(Rcode.string(rcode));
Cache.java 601 int rcode = in.getHeader().getRcode(); local
608 if ((rcode != Rcode.NOERROR && rcode != Rcode.NXDOMAIN) ||
675 int cachetype = (rcode == Rcode.NXDOMAIN) ? 0 : qtype;
676 if (rcode == Rcode.NXDOMAIN || soa != null || ns == null) {
685 if (rcode == Rcode.NXDOMAIN
    [all...]
Lookup.java 477 int rcode = response.getHeader().getRcode(); local
478 if (rcode != Rcode.NOERROR && rcode != Rcode.NXDOMAIN) {
482 badresponse_error = Rcode.string(rcode);
Header.java 164 * Sets the message's rcode
165 * @see Rcode
170 throw new IllegalArgumentException("DNS Rcode " + value +
177 * Retrieves the mesasge's rcode
178 * @see Rcode
259 sb.append(", status: " + Rcode.string(newrcode));
TKEYRecord.java 130 sb.append(Rcode.TSIGstring(error));
SimpleResolver.java 200 System.err.println("TSIG verify: " + Rcode.TSIGstring(error));

Completed in 84 milliseconds