Kea 2.5.8
hooks.h
Go to the documentation of this file.
1// Copyright (C) 2013-2024 Internet Systems Consortium, Inc. ("ISC")
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7#ifndef HOOKS_H
8#define HOOKS_H
9
12
13namespace {
14
15// Version 20507 of the hooks framework, set for Kea 2.5.7
16const int KEA_HOOKS_VERSION = 20507;
17
18// Names of the framework functions.
19const char* const LOAD_FUNCTION_NAME = "load";
20const char* const UNLOAD_FUNCTION_NAME = "unload";
21const char* const VERSION_FUNCTION_NAME = "version";
22const char* const MULTI_THREADING_COMPATIBLE_FUNCTION_NAME =
23 "multi_threading_compatible";
24
25// Typedefs for pointers to the framework functions.
26typedef int (*version_function_ptr)();
27typedef int (*load_function_ptr)(isc::hooks::LibraryHandle&);
28typedef int (*unload_function_ptr)();
29typedef int (*multi_threading_compatible_function_ptr)();
30
31} // Anonymous namespace
32
33namespace isc {
34namespace hooks {
35
65
67
68} // namespace hooks
69} // namespace isc
70
71#endif // HOOKS_H
void hooksStaticLinkInit()
User-Library Initialization for Statically-Linked Kea.
Defines the logger used by the top-level component of kea-lfc.