|
@@ -29,11 +29,11 @@ This is most likely due to the installation of a new version of BIND 10
|
|
|
without rebuilding the hook library. A rebuild and re-install of the library
|
|
|
should fix the problem in most cases.
|
|
|
|
|
|
-% HOOKS_LOAD 'load' function in hook library %1 found and successfully called
|
|
|
+% HOOKS_LOAD 'load' function in hook library %1 returned success
|
|
|
This is a debug message issued when the "load" function has been found in a
|
|
|
hook library and has been successfully called.
|
|
|
|
|
|
-% HOOKS_LOAD_ERROR hook library %1 has 'load' function returing error code %2
|
|
|
+% HOOKS_LOAD_ERROR 'load' function in hook library %1 returned error %2
|
|
|
A "load" function was found in the library named in the message and was
|
|
|
called. The function returned a non-zero status (also given in the message)
|
|
|
which was interpreted as an error. The library has been unloaded and
|
|
@@ -45,6 +45,10 @@ no function called "load" was found in it. Providing the library contained
|
|
|
some "standard" functions (i.e. functions with the names of the hooks for
|
|
|
the given server), this is not an issue.
|
|
|
|
|
|
+% HOOKS_NO_UNLOAD no 'unload' function found in hook library %1
|
|
|
+This is a debug message issued when the library is being unloaded. It merely
|
|
|
+states that the library did not contain an "unload" function.
|
|
|
+
|
|
|
% HOOKS_NO_VERSION no 'version' function found in hook library %1
|
|
|
The shared library named in the message was found and successfully loaded, but
|
|
|
BIND 10 did not find a function named "version" in it. This function is
|
|
@@ -61,3 +65,13 @@ the services offered by the library.
|
|
|
This is a debug message, output when the library loading function has located
|
|
|
a standard callout (a callout with the same name as a hook point) and
|
|
|
registered it.
|
|
|
+
|
|
|
+% HOOKS_UNLOAD 'unload' function in hook library %1 returned success
|
|
|
+This is a debug message issued when an "unload" function has been found in a
|
|
|
+hook library during the unload process, called, and returned success.
|
|
|
+
|
|
|
+% HOOKS_UNLOAD_ERROR 'unload' function in hook library %1 returned error %2
|
|
|
+During the unloading of a library, an "unload" function was found. It was
|
|
|
+called, but returned an error (non-zero) status, resulting in the issuing of
|
|
|
+this message. The unload process continued after this message and the library
|
|
|
+has been unloaded.
|