hooks_messages.mes 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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_CALLOUT hooks library with index %1 has called a callout on hook %2 that has address %3
  16. Only output at a high debugging level, this message indicates that
  17. a callout on the named hook registered by the library with the given
  18. index (in the list of loaded libraries) has been called and returned a
  19. success state. The address of the callout is given in the message
  20. % HOOKS_CALLOUT_ERROR error returned by callout on hook %1 registered by library with index %2 (callout address %3)
  21. If a callout returns an error status when called, this warning message
  22. is issues. It identifies the hook to which the callout is attached,
  23. and the index of the library (in the list of loaded libraries) that
  24. registered it. The address of the callout is also given.
  25. % HOOKS_CALLOUT_REMOVED callout removed from hook %1 for library %2
  26. This is a debug message issued during library unloading. It notes that
  27. one of more callouts registered by that library have been removed from
  28. the specified hook.
  29. % HOOKS_CLOSE_ERROR failed to close hook library %1: %2
  30. BIND 10 has failed to close the named hook library for the stated reason.
  31. Although this is an error, this should not affect the running system
  32. other than as a loss of resources. If this error persists, you should
  33. restart BIND 10.
  34. % HOOKS_DEREGISTER_ALL_CALLOUTS hook library at index %1 deregistered all callouts on hook %2
  35. A debug message issued when all callouts on the specified hook registered
  36. by the library with the given index were removed.
  37. % HOOKS_DEREGISTER_CALLOUT hook library at index %1 deregistered a callout on hook %2
  38. A debug message issued when all instances of a particular callouts on
  39. the hook identified in the message that were registered by the library
  40. with the given index were removed.
  41. % HOOKS_INCORRECT_VERSION hook library %1 is at version %2, require version %3
  42. BIND 10 has detected that the named hook library has been built against
  43. a version of BIND 10 that is incompatible with the version of BIND 10
  44. running on your system. It has not loaded the library.
  45. This is most likely due to the installation of a new version of BIND 10
  46. without rebuilding the hook library. A rebuild and re-install of the
  47. library should fix the problem in most cases.
  48. % HOOKS_LIBRARY_LOADED hooks library %1 successfully loaded
  49. This information message is issued when a user-supplied hooks library
  50. has been successfully loaded.
  51. % HOOKS_LIBRARY_UNLOADED hooks library %1 successfully unloaded
  52. This information message is issued when a user-supplied hooks library
  53. has been successfully unloaded.
  54. % HOOKS_LIBRARY_VERSION hooks library %1 reports its version as %2
  55. A debug message issued when the version check on the hooks library
  56. has succeeded.
  57. % HOOKS_LOAD 'load' function in hook library %1 returned success
  58. This is a debug message issued when the "load" function has been found
  59. in a hook library and has been successfully called.
  60. % HOOKS_LOAD_ERROR 'load' function in hook library %1 returned error %2
  61. A "load" function was found in the library named in the message and
  62. was called. The function returned a non-zero status (also given in
  63. the message) which was interpreted as an error. The library has been
  64. unloaded and no callouts from it will be installed.
  65. % HOOKS_LOAD_LIBRARY loading hooks library %1
  66. This is a debug message called when the specified library is being loaded.
  67. % HOOKS_NO_LOAD no 'load' function found in hook library %1
  68. This is a debug message saying that the specified library was loaded
  69. but no function called "load" was found in it. Providing the library
  70. contained some "standard" functions (i.e. functions with the names of
  71. the hooks for the given server), this is not an issue.
  72. % HOOKS_NO_UNLOAD no 'unload' function found in hook library %1
  73. This is a debug message issued when the library is being unloaded.
  74. It merely states that the library did not contain an "unload" function.
  75. % HOOKS_NO_VERSION no 'version' function found in hook library %1
  76. The shared library named in the message was found and successfully loaded,
  77. but BIND 10 did not find a function named "version" in it. This function
  78. is required and should return the version of BIND 10 against which the
  79. library was built. The value is used to check that the library was built
  80. against a compatible version of BIND 10. The library has not been loaded.
  81. % HOOKS_OPEN_ERROR failed to open hook library %1: %2
  82. BIND 10 failed to open the specified hook library for the stated
  83. reason. The library has not been loaded. BIND 10 will continue to
  84. function, but without the services offered by the library.
  85. % HOOKS_REGISTER_CALLOUT hooks library with index %1 registered callout for hook '%2'
  86. This is a debug message, output when a library (whose index in the list
  87. of libraries (being) loaded is given) registers a callout.
  88. % HOOKS_REGISTER_HOOK hook %1 was registered
  89. This is a debug message indicating that a hook of the specified name
  90. was registered by a BIND 10 server. The server doing the logging is
  91. indicated by the full name of the logger used to log this message.
  92. % HOOKS_REGISTER_STD_CALLOUT hooks library %1 registered standard callout for hook %2
  93. This is a debug message, output when the library loading function has
  94. located a standard callout (a callout with the same name as a hook point)
  95. and registered it.
  96. % HOOKS_RESET_HOOK_LIST the list of hooks has been reset
  97. This is a message indicating that the list of hooks has been reset.
  98. While this is usual when running the BIND 10 test suite, it should not be
  99. seen when running BIND 10 in a producion environment. If this appears,
  100. please report a bug through the usual channels.
  101. % HOOKS_UNLOAD 'unload' function in hook library %1 returned success
  102. This is a debug message issued when an "unload" function has been found
  103. in a hook library during the unload process, called, and returned success.
  104. % HOOKS_UNLOAD_ERROR 'unload' function in hook library %1 returned error %2
  105. During the unloading of a library, an "unload" function was found.
  106. It was called, but returned an error (non-zero) status, resulting in
  107. the issuing of this message. The unload process continued after this
  108. message and the library has been unloaded.
  109. % HOOKS_UNLOAD_LIBRARY unloading library %1
  110. This is a debug message called when the specified library is being
  111. unloaded.