messagedef.mes 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. $PREFIX DATASRC_
  15. $NAMESPACE isc::datasrc
  16. # \brief Messages for the data source library
  17. CACHE_CREAT Creating the hotspot cache
  18. + Debug information that the hotspot cache was created at startup.
  19. CACHE_DESTROY Destroying the hotspot cache
  20. + Debug information. The hotspot cache is being destroyed.
  21. CACHE_INSERT Inserting item '%s' into the cache
  22. + Debug information. It means a new item is being inserted into the hotspot
  23. + cache.
  24. CACHE_OLD_FOUND Older instance of cache item found, replacing
  25. + Debug information. While inserting an item into the hotspot cache, an older
  26. + instance of an item with the same name was found. The old instance will be
  27. + removed. This should be directly followed by CACHE_REMOVE.
  28. CACHE_FULL Cache is full, dropping oldest
  29. + Debug information. After inserting an item into the hotspot cache, the
  30. + maximum number of items was exceeded, so the least recently used item will
  31. + be dropped. This should be directly followed by CACHE_REMOVE.
  32. CACHE_REMOVE Removing '%s' from the cache
  33. + Debug information. An item is being removed from the hotspot cache.
  34. CACHE_LOOKUP Looking up '%s' in the cache
  35. + Debug information. We are trying to look up an item in the hotspot cache.
  36. + Further progress and result will follow.
  37. CACHE_NOT_FOUND The item was not found
  38. + Debug information. The item we tried to look in the last CACHE_LOOKUP was
  39. + not found in the hotspot cache.
  40. CACHE_FOUND The item was found
  41. + Debug information. The last CACHE_LOOKUP was successful, eg. we have found
  42. + the requested item in the hotspot cache.
  43. CACHE_EXPIRED The item is expired
  44. + Debug information. The item requested in the last CACHE_LOOKUP was in the
  45. + hotspot cache, but it was old. We're going to remove it and report we don't
  46. + have it (the external result will be the same as with CACHE_NOT_FOUND).
  47. CACHE_SLOTS Setting the cache size to '%d'
  48. + The maximum allowed number of items of the hotspot cache is set to the given
  49. + number. If there are too many, we're going to drop them right now. The size
  50. + of 0 means no limit.
  51. CACHE_ENABLE Enabling the cache
  52. + The hotspot cache is enabled from now on.
  53. CACHE_DISABLE Disabling the cache
  54. + The hotspot cache is disabled from now on. It is not going to store
  55. + information or return anything.
  56. QUERY_SYNTH_CNAME Synthesizing CNAME from DNAME on '%s'
  57. + Debug info. While answering a query, we met a DNAME. We'll return the DNAME,
  58. + but we're creating a CNAME for clients that don't understand DNAMEs.
  59. QUERY_EMPTY_DNAME The DNAME on '%s' is empty
  60. + We tried to synthesize a CNAME from this DNAME, but it contains no records.
  61. + This indicates problem with supplied data.
  62. QUERY_GET_NS_ADDITIONAL Addition of A/AAAA for '%s' requested by NS '%s'
  63. + Debug information. While processing a query, we met a NS record. It
  64. + references the mentioned address, so we want to look up A/AAAA records for it
  65. + and put it into the additional section.
  66. QUERY_GET_MX_ADDITIONAL Addition of A/AAAA for '%s' requested by MX '%s'
  67. + Debug information. While processing a query, we met a MX record. It
  68. + references the mentioned address, so we want to look up A/AAAA records for it
  69. + and put it into the additional section.
  70. QUERY_FOLLOW_CNAME Following CNAME at '%s'
  71. + Debug information. The domain is a CNAME (or a DNAME and we created a CNAME
  72. + for it already), so we're following it.
  73. QUERY_EMPTY_CNAME CNAME at '%s' is empty
  74. + We tried to follow a CNAME, but contains no records. We have nothing to
  75. + follow, so we will have nothing in the answer. This indicates a problem with
  76. + supplied data.
  77. QUERY_TOO_MANY_CNAMES CNAME chain limit exceeded at '%s'
  78. + While answering a query, we followed a CNAME. Then another one. And after 16
  79. + CNAMEs we decided it's enough and we won't follow more. Long CNAME chains
  80. + are discouraged, and this might be a loop as well. Note that some of the
  81. + CNAMEs might have been synthesised from DNAMEs internally. This indicates
  82. + a problem with supplied data.