diff options
Diffstat (limited to 'src/lib/hooks')
-rw-r--r-- | src/lib/hooks/callout_manager.h | 2 | ||||
-rw-r--r-- | src/lib/hooks/hooks.h | 14 | ||||
-rw-r--r-- | src/lib/hooks/hooks_manager.h | 2 | ||||
-rw-r--r-- | src/lib/hooks/library_manager.h | 2 |
4 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/hooks/callout_manager.h b/src/lib/hooks/callout_manager.h index 8ca275bce1..2ddf4181a8 100644 --- a/src/lib/hooks/callout_manager.h +++ b/src/lib/hooks/callout_manager.h @@ -41,7 +41,7 @@ public: /// @brief Callout Manager /// /// This class manages the registration, deregistration and execution of the -/// library callouts. It is part of the hooks framework used by the BIND 10 +/// library callouts. It is part of the hooks framework used by the Kea /// server, and is not for use by user-written code in a hooks library. /// /// In operation, the class needs to know two items of data: diff --git a/src/lib/hooks/hooks.h b/src/lib/hooks/hooks.h index c15bfd1167..abfdb5c658 100644 --- a/src/lib/hooks/hooks.h +++ b/src/lib/hooks/hooks.h @@ -39,9 +39,9 @@ typedef int (*unload_function_ptr)(); namespace isc { namespace hooks { -/// @brief User-Library Initialization for Statically-Linked BIND 10 +/// @brief User-Library Initialization for Statically-Linked Kea /// -/// If BIND 10 is statically-linked, a user-created hooks library will not be +/// If Kea is statically-linked, a user-created hooks library will not be /// able to access symbols in it. In particular, it will not be able to access /// singleton objects. /// @@ -49,20 +49,20 @@ namespace hooks { /// a singleton ServerHooks object, hooks framework objects store a reference /// to it when they are created. When the user library needs to register a /// callout (which requires access to the ServerHooks information), it accesses -/// the ServerHooks object through a pointer passed from the BIND 10 image. +/// the ServerHooks object through a pointer passed from the Kea image. /// /// The logging framework is more problematical. Here the code is partly -/// statically linked (the BIND 10 logging library) and partly shared (the +/// statically linked (the Kea logging library) and partly shared (the /// log4cplus). The state of the former is not accessible to the user library, /// but the state of the latter is. So within the user library, we need to -/// initialize the BIND 10 logging library but not initialize the log4cplus +/// initialize the Kea logging library but not initialize the log4cplus /// code. Some of the initialization is done when the library is loaded, but /// other parts are done at run-time. /// /// This function - to be called by the user library code in its load() function -/// when running against a statically linked BIND 10 - initializes the BIND 10 +/// when running against a statically linked Kea - initializes the Kea /// logging library. In particular, it loads the message dictionary with the -/// text of the BIND 10 messages. +/// text of the Kea messages. /// /// @note This means that the virtual address space is loaded with two copies /// of the message dictionary. Depending on how the user libraries are linked, diff --git a/src/lib/hooks/hooks_manager.h b/src/lib/hooks/hooks_manager.h index 53a2525592..0958677fc2 100644 --- a/src/lib/hooks/hooks_manager.h +++ b/src/lib/hooks/hooks_manager.h @@ -35,7 +35,7 @@ class LibraryManagerCollection; /// @brief Hooks Manager /// /// This is the overall manager of the hooks framework and is the main class -/// used by a BIND 10 module when handling hooks. It is responsible for the +/// used by a Kea module when handling hooks. It is responsible for the /// loading and unloading of user libraries, and for calling the callouts on /// each hook point. /// diff --git a/src/lib/hooks/library_manager.h b/src/lib/hooks/library_manager.h index dc7c5ebc3b..1ea4f322ca 100644 --- a/src/lib/hooks/library_manager.h +++ b/src/lib/hooks/library_manager.h @@ -170,7 +170,7 @@ protected: /// /// With the library open, accesses the "version()" function and, if /// present, checks the returned value against the hooks version symbol - /// for the currently running BIND 10. The "version()" function is + /// for the currently running Kea. The "version()" function is /// mandatory and must be present (and return the correct value) for the /// library to load. /// |