hooks_messages.mes 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. # Copyright (C) 2013 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. $NAMESPACE isc::hooks
  15. % HOOKS_ALL_CALLOUTS_DEREGISTERED hook library at index %1 removed all callouts on hook %2
  16. A debug message issued when all callouts on the specified hook registered
  17. by the library with the given index were removed. This is similar to
  18. the HOOKS_CALLOUTS_REMOVED message (and the two are likely to be seen
  19. together), but is issued at a lower-level in the hook framework.
  20. % HOOKS_CALLOUTS_REMOVED callouts removed from hook %1 for library %2
  21. This is a debug message issued during library unloading. It notes that
  22. one of more callouts registered by that library have been removed from
  23. the specified hook. This is similar to the HOOKS_DEREGISTER_ALL_CALLOUTS
  24. message (and the two are likely to be seen together), but is issued at a
  25. higher-level in the hook framework.
  26. % HOOKS_CALLOUT_CALLED hooks library with index %1 has called a callout on hook %2 that has address %3
  27. Only output at a high debugging level, this message indicates that
  28. a callout on the named hook registered by the library with the given
  29. index (in the list of loaded libraries) has been called and returned a
  30. success state. The address of the callout is given in the message
  31. % HOOKS_CALLOUT_DEREGISTERED hook library at index %1 deregistered a callout on hook %2
  32. A debug message issued when all instances of a particular callouts on
  33. the hook identified in the message that were registered by the library
  34. with the given index have been removed.
  35. % HOOKS_CALLOUT_ERROR error returned by callout on hook %1 registered by library with index %2 (callout address %3)
  36. If a callout returns an error status when called, this error message
  37. is issued. It identifies the hook to which the callout is attached, the
  38. index of the library (in the list of loaded libraries) that registered
  39. it and the address of the callout. The error is otherwise ignored.
  40. % HOOKS_CALLOUT_EXCEPTION exception thrown by callout on hook %1 registered by library with index %2 (callout address %3): %4
  41. If a callout throws an exception when called, this error message is
  42. issued. It identifies the hook to which the callout is attached, the
  43. index of the library (in the list of loaded libraries) that registered
  44. it and the address of the callout. The error is otherwise ignored.
  45. % HOOKS_CALLOUT_REGISTRATION hooks library with index %1 registering callout for hook '%2'
  46. This is a debug message, output when a library (whose index in the list
  47. of libraries (being) loaded is given) registers a callout.
  48. % HOOKS_CLOSE_ERROR failed to close hook library %1: %2
  49. BIND 10 has failed to close the named hook library for the stated reason.
  50. Although this is an error, this should not affect the running system
  51. other than as a loss of resources. If this error persists, you should
  52. restart BIND 10.
  53. % HOOKS_HOOK_LIST_RESET the list of hooks has been reset
  54. This is a message indicating that the list of hooks has been reset.
  55. While this is usual when running the BIND 10 test suite, it should not be
  56. seen when running BIND 10 in a production environment. If this appears,
  57. please report a bug through the usual channels.
  58. % HOOKS_INCORRECT_VERSION hook library %1 is at version %2, require version %3
  59. BIND 10 has detected that the named hook library has been built against
  60. a version of BIND 10 that is incompatible with the version of BIND 10
  61. running on your system. It has not loaded the library.
  62. This is most likely due to the installation of a new version of BIND 10
  63. without rebuilding the hook library. A rebuild and re-install of the
  64. library should fix the problem in most cases.
  65. % HOOKS_LIBRARY_LOADED hooks library %1 successfully loaded
  66. This information message is issued when a user-supplied hooks library
  67. has been successfully loaded.
  68. % HOOKS_LIBRARY_LOADING loading hooks library %1
  69. This is a debug message output just before the specified library is loaded.
  70. If the action is successfully, it will be followed by the
  71. HOOKS_LIBRARY_LOADED informational message.
  72. % HOOKS_LIBRARY_UNLOADED hooks library %1 successfully unloaded
  73. This information message is issued when a user-supplied hooks library
  74. has been successfully unloaded.
  75. % HOOKS_LIBRARY_UNLOADING unloading library %1
  76. This is a debug message called when the specified library is
  77. being unloaded. If all is successful, it will be followed by the
  78. HOOKS_LIBRARY_UNLOADED informational message.
  79. % HOOKS_LIBRARY_VERSION hooks library %1 reports its version as %2
  80. A debug message issued when the version check on the hooks library
  81. has succeeded.
  82. % HOOKS_LOAD_ERROR 'load' function in hook library %1 returned error %2
  83. A "load" function was found in the library named in the message and
  84. was called. The function returned a non-zero status (also given in
  85. the message) which was interpreted as an error. The library has been
  86. unloaded and no callouts from it will be installed.
  87. % HOOKS_LOAD_EXCEPTION 'load' function in hook library %1 threw an exception
  88. A "load" function was found in the library named in the message and
  89. was called. The function threw an exception (an error indication)
  90. during execution, which is an error condition. The library has been
  91. unloaded and no callouts from it will be installed.
  92. % HOOKS_LOAD_FRAMEWORK_EXCEPTION 'load' function in hook library %1 threw an exception: reason %2
  93. A "load" function was found in the library named in the message and
  94. was called. Either the hooks framework or the function threw an
  95. exception (an error indication) during execution, which is an error
  96. condition; the cause of the exception is recorded in the message.
  97. The library has been unloaded and no callouts from it will be
  98. installed.
  99. % HOOKS_LOAD_SUCCESS 'load' function in hook library %1 returned success
  100. This is a debug message issued when the "load" function has been found
  101. in a hook library and has been successfully called.
  102. % HOOKS_NO_LOAD no 'load' function found in hook library %1
  103. This is a debug message saying that the specified library was loaded
  104. but no function called "load" was found in it. Providing the library
  105. contained some "standard" functions (i.e. functions with the names of
  106. the hooks for the given server), this is not an issue.
  107. % HOOKS_NO_UNLOAD no 'unload' function found in hook library %1
  108. This is a debug message issued when the library is being unloaded.
  109. It merely states that the library did not contain an "unload" function.
  110. % HOOKS_NO_VERSION no 'version' function found in hook library %1
  111. The shared library named in the message was found and successfully loaded,
  112. but BIND 10 did not find a function named "version" in it. This function
  113. is required and should return the version of BIND 10 against which the
  114. library was built. The value is used to check that the library was built
  115. against a compatible version of BIND 10. The library has not been loaded.
  116. % HOOKS_OPEN_ERROR failed to open hook library %1: %2
  117. BIND 10 failed to open the specified hook library for the stated
  118. reason. The library has not been loaded. BIND 10 will continue to
  119. function, but without the services offered by the library.
  120. % HOOKS_STD_CALLOUT_REGISTERED hooks library %1 registered standard callout for hook %2 at address %3
  121. This is a debug message, output when the library loading function has
  122. located a standard callout (a callout with the same name as a hook point)
  123. and registered it. The address of the callout is indicated.
  124. % HOOKS_UNLOAD_ERROR 'unload' function in hook library %1 returned error %2
  125. During the unloading of a library, an "unload" function was found.
  126. It was called, but returned an error (non-zero) status, resulting in
  127. the issuing of this message. The unload process continued after this
  128. message and the library has been unloaded.
  129. % HOOKS_UNLOAD_EXCEPTION 'unload' function in hook library %1 threw an exception
  130. During the unloading of a library, an "unload" function was found. It was
  131. called, but in the process generated an exception (an error indication).
  132. The unload process continued after this message and the library has
  133. been unloaded.
  134. % HOOKS_UNLOAD_FRAMEWORK_EXCEPTION 'unload' function in hook library %1 threw an exception, reason %2
  135. During the unloading of a library, an "unload" function was found.
  136. It was called, but in the process either it or the hooks framework
  137. generated an exception (an error indication); the cause of the error
  138. is recorded in the message. The unload process continued after
  139. this message and the library has been unloaded.
  140. % HOOKS_UNLOAD_SUCCESS 'unload' function in hook library %1 returned success
  141. This is a debug message issued when an "unload" function has been found
  142. in a hook library during the unload process, called, and returned success.
  143. % HOOKS_VERSION_EXCEPTION 'version' function in hook library %1 threw an exception
  144. This error message is issued if the version() function in the specified
  145. hooks library was called and generated an exception. The library is
  146. considered unusable and will not be loaded.