diff options
author | Marcin Siodelski <marcin@isc.org> | 2022-10-13 08:03:20 +0200 |
---|---|---|
committer | Marcin Siodelski <marcin@isc.org> | 2022-11-21 08:52:02 +0100 |
commit | c599f02fe0f0c0bb92c58f99d97c0e610f794845 (patch) | |
tree | 2096849c877c46581eacf959de60163604b63a91 /src/lib/dhcpsrv/Makefile.am | |
parent | [#2606] update documentation (diff) | |
download | kea-c599f02fe0f0c0bb92c58f99d97c0e610f794845.tar.xz kea-c599f02fe0f0c0bb92c58f99d97c0e610f794845.zip |
[#2348] Moved allocators outside the engine
Diffstat (limited to 'src/lib/dhcpsrv/Makefile.am')
-rw-r--r-- | src/lib/dhcpsrv/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/dhcpsrv/Makefile.am b/src/lib/dhcpsrv/Makefile.am index 21e6dfb548..da0622c726 100644 --- a/src/lib/dhcpsrv/Makefile.am +++ b/src/lib/dhcpsrv/Makefile.am @@ -64,6 +64,7 @@ libkea_dhcpsrv_la_SOURCES = libkea_dhcpsrv_la_SOURCES += alloc_engine.cc alloc_engine.h libkea_dhcpsrv_la_SOURCES += alloc_engine_log.cc alloc_engine_log.h libkea_dhcpsrv_la_SOURCES += alloc_engine_messages.h alloc_engine_messages.cc +libkea_dhcpsrv_la_SOURCES += allocator.h libkea_dhcpsrv_la_SOURCES += base_host_data_source.h libkea_dhcpsrv_la_SOURCES += cache_host_data_source.h libkea_dhcpsrv_la_SOURCES += callout_handle_store.h @@ -114,6 +115,7 @@ libkea_dhcpsrv_la_SOURCES += hosts_log.cc hosts_log.h libkea_dhcpsrv_la_SOURCES += hosts_messages.h hosts_messages.cc libkea_dhcpsrv_la_SOURCES += ip_range.h ip_range.cc libkea_dhcpsrv_la_SOURCES += ip_range_permutation.h ip_range_permutation.cc +libkea_dhcpsrv_la_SOURCES += iterative_allocator.cc iterative_allocator.h libkea_dhcpsrv_la_SOURCES += key_from_key.h libkea_dhcpsrv_la_SOURCES += lease.cc lease.h libkea_dhcpsrv_la_SOURCES += lease_file_loader.h @@ -292,6 +294,7 @@ libkea_dhcpsrv_include_HEADERS = \ alloc_engine.h \ alloc_engine_log.h \ alloc_engine_messages.h \ + allocator.h \ base_host_data_source.h \ cache_host_data_source.h \ callout_handle_store.h \ @@ -341,6 +344,7 @@ libkea_dhcpsrv_include_HEADERS = \ hosts_log.h \ ip_range.h \ ip_range_permutation.h \ + iterative_allocator.h \ key_from_key.h \ lease.h \ lease_file_loader.h \ |