Lines Matching refs:IXFR

31  * the result will either be an IXFR-style response, an AXFR-style response,
71 * All changes between two versions of a zone in an IXFR response.
104 * Called when an IXFR transfer begins.
109 * Called when a series of IXFR deletions begins.
115 * Called when a series of IXFR adds begins.
240 * Instantiates a ZoneTransferIn object to do an IXFR (incremental zone
244 * @param fallback If true, fall back to AXFR if IXFR is not supported.
254 return new ZoneTransferIn(zone, Type.IXFR, serial, fallback, address,
259 * Instantiates a ZoneTransferIn object to do an IXFR (incremental zone
263 * @param fallback If true, fall back to AXFR if IXFR is not supported.
282 * Instantiates a ZoneTransferIn object to do an IXFR (incremental zone
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).
363 if (qtype == Type.IXFR) {
397 fail("server doesn't support IXFR");
415 // to recognize the end of an IXFR.
417 if (qtype == Type.IXFR &&
429 // If it begins with 2 SOAs, it's an IXFR.
430 if (qtype == Type.IXFR && type == Type.SOA &&
433 rtype = Type.IXFR;
474 fail("IXFR out of sync: expected serial " +
548 if (qtype == Type.IXFR &&
563 if (answers.length == 0 && qtype == Type.IXFR) {
602 * and IXFR-style response (List of Deltas), or null, which indicates that
603 * an IXFR was performed and the zone is up to date.
627 * This will be true if either an IXFR was performed, an IXFR was performed
628 * and the server provided a full zone transfer, or an IXFR failed and
648 * Returns true if the response is an IXFR-style response (List of Deltas).
649 * This will be true only if an IXFR was performed and the server provided
654 return (rtype == Type.IXFR);
658 * Gets the IXFR-style response.
670 * This will be true only if an IXFR was performed.