Home | History | Annotate | Download | only in DNS

Lines Matching refs:AXFR

31  * the result will either be an IXFR-style response, an AXFR-style response,
45 private static final int AXFR = 6;
99 * Called when an AXFR transfer begins.
121 * Called for each content record in an AXFR.
128 private List axfr;
132 axfr = new ArrayList();
161 list = axfr;
194 * Instantiates a ZoneTransferIn object to do an AXFR (full zone transfer).
203 return new ZoneTransferIn(zone, Type.AXFR, 0, false, address, key);
207 * Instantiates a ZoneTransferIn object to do an AXFR (full zone transfer).
225 * Instantiates a ZoneTransferIn object to do an AXFR (full zone transfer).
244 * @param fallback If true, fall back to AXFR if IXFR is not supported.
263 * @param fallback If true, fall back to AXFR if IXFR is not supported.
286 * @param fallback If true, fall back to AXFR if IXFR is not supported.
308 * Gets the type of zone transfer (either AXFR or IXFR).
399 logxfr("falling back to AXFR");
400 qtype = Type.AXFR;
428 // If the transfer begins with 1 SOA, it's an AXFR.
438 rtype = Type.AXFR;
442 state = AXFR;
485 case AXFR:
601 * @return A list, which is either an AXFR-style response (List of Records),
612 if (handler.axfr != null)
613 return handler.axfr;
626 * Returns true if the response is an AXFR-style response (List of Records).
629 * fallback to AXFR occurred.
633 return (rtype == Type.AXFR);
637 * Gets the AXFR-style response.
644 return handler.axfr;
677 return (handler.axfr == null && handler.ixfr == null);