libxfrin_messages.mes 1.8 KB

12345678910111213141516171819202122232425262728293031
  1. # Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
  2. #
  3. # Permission to use, copy, modify, and/or distribute this software for any
  4. # purpose with or without fee is hereby granted, provided that the above
  5. # copyright notice and this permission notice appear in all copies.
  6. #
  7. # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  8. # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  9. # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  10. # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  11. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  12. # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  13. # PERFORMANCE OF THIS SOFTWARE.
  14. # No namespace declaration - these constants go in the global namespace
  15. # of the libxfrin_messages python module.
  16. % LIBXFRIN_DIFFERENT_TTL multiple data with different TTLs (%1, %2) on %3/%4/%5. Adjusting %2 -> %1.
  17. The xfrin module received an update containing multiple rdata changes for the
  18. same RRset. But the TTLs of these don't match each other. As we combine them
  19. together, the latter one gets overwritten to the earlier one in the sequence.
  20. % LIBXFRIN_NO_JOURNAL disabled journaling for updates to %1 on %2
  21. An attempt was made to create a Diff object with journaling enabled, but
  22. the underlying data source didn't support journaling (while still allowing
  23. updates) and so the created object has it disabled. At a higher level this
  24. means that the updates will be applied to the zone but subsequent IXFR requests
  25. will result in a full zone transfer (i.e., an AXFR-style IXFR). Unless the
  26. overhead of the full transfer is an issue this message can be ignored;
  27. otherwise you may want to check why the journaling wasn't allowed on the
  28. data source and either fix the issue or use a different type of data source.