]> git.ipfire.org Git - thirdparty/kea.git/log
thirdparty/kea.git
5 years ago[880-libdhcp-vs-thread-sanitizer] Checkpoint: second point addressed 880-libdhcp-vs-thread-sanitizer
Francis Dupont [Wed, 20 Nov 2019 03:09:21 +0000 (04:09 +0100)] 
[880-libdhcp-vs-thread-sanitizer] Checkpoint: second point addressed

5 years ago[880-libdhcp-vs-thread-sanitizer] Checkpoint: first point addressed
Francis Dupont [Wed, 20 Nov 2019 01:50:53 +0000 (02:50 +0100)] 
[880-libdhcp-vs-thread-sanitizer] Checkpoint: first point addressed

5 years ago[985-relax-timings-in-new-config-backend-pull-unit-tests] Relaxed timings and updated... 985-relax-timings-in-new-config-backend-pull-unit-tests
Francis Dupont [Thu, 31 Oct 2019 09:01:07 +0000 (10:01 +0100)] 
[985-relax-timings-in-new-config-backend-pull-unit-tests] Relaxed timings and updated names

5 years ago[785-get-rid-of-xsltproc-including-xsltproc_net] Removed last reference to XSLTPROC_NET 785-get-rid-of-xsltproc-including-xsltproc_net
Francis Dupont [Thu, 3 Oct 2019 07:09:55 +0000 (09:09 +0200)] 
[785-get-rid-of-xsltproc-including-xsltproc_net] Removed last reference to XSLTPROC_NET

5 years ago[#964,!577] Two trivial fixes as a result of second review. 1014-release-changes-for-1-6-1 964-ha-primary-gets-stuck-spinning-on-a-perpetually-ready-external-socket-ha-backup-server
Marcin Siodelski [Wed, 30 Oct 2019 09:05:14 +0000 (10:05 +0100)] 
[#964,!577] Two trivial fixes as a result of second review.

- Addeed asterisk in the changelog to mark it incompatible change.
- Fixed comma character in the new line.

5 years ago[#964,!577] Fixed segfaulting unit test
Thomas Markwalder [Tue, 29 Oct 2019 14:56:04 +0000 (10:56 -0400)] 
[#964,!577] Fixed segfaulting unit test

src/lib/http/client.cc
    HttpClient::CloseIfOutOfBandwith() - added missing loop
    break after erasure.

5 years ago[#964,!577] Added unit tests
Thomas Markwalder [Mon, 28 Oct 2019 17:50:10 +0000 (13:50 -0400)] 
[#964,!577] Added unit tests

src/lib/dhcp/tests/iface_mgr_unittest.cc
    Modified tests to verify that external socket callbacks receive
    the correct socket descriptor when invoked by IfaceMgr.

src/lib/http/tests/server_client_unittests.cc
    TEST_F(HttpClientTest, closeIfOutOfBandwidth) - new test to
    verifies HttpClient::closeIfOutOfBandwidth()

5 years ago[#964,!577] Revamped to detect and close OOB Connections
Thomas Markwalder [Mon, 28 Oct 2019 15:19:53 +0000 (11:19 -0400)] 
[#964,!577] Revamped to detect and close OOB Connections

Rather than just unregistering the socket, we now actually close
the Connection. This ensures we never end up with an unregistered
but open connection.

src/hooks/dhcp/high_availability/ha_service.*
    HAService::clientConnectHandler() - modified to call
    HttpClient::closeIfOutOfBandwidth().

src/lib/http/client.*
    Connection - replaced isTransaction(int socket_fd) with
    isMySocket(int socket_fd)

    ConnectionPool - replaced isTransaction(int socket_fd) with
    closeIfOutOfBandwidth(int socket_fd)

    HttpClient - replaced isTransaction(int socket_fd) with
    closeIfOutOfBandwidth(int socket_fd)

5 years ago[#964,!577] Added external socket ready handler to HAService
Thomas Markwalder [Fri, 25 Oct 2019 19:49:34 +0000 (15:49 -0400)] 
[#964,!577] Added external socket ready handler to HAService

src/hooks/dhcp/high_availability/ha_service.*
    HAService::socketReadyHandler(int tcp_native_fd) - new handler for external socket ready
    callback. It detects out-of-transaction ready socket and unregisters it.

src/lib/http/client.*
    isTransactionOngoing(int socket_fd) - new method to return true if any of the clients
    connections are using the socket in an ongoing transaction

5 years ago[#964,!577] Added socket descriptor parameter to IfaceMgr external callback handler
Thomas Markwalder [Fri, 25 Oct 2019 18:24:42 +0000 (14:24 -0400)] 
[#964,!577] Added socket descriptor parameter to IfaceMgr external callback handler

src/lib/dhcp/iface_mgr.*
    typedef SocketCallback - added socket descriptpor parameter
    Added socket fd to invocations of socket ready callback

src/bin/dhcp4/dhcp4to6_ipc.*
    void Dhcp4to6Ipc::handler(int /* fd */)

src/bin/dhcp6/dhcp6to4_ipc.*
    void Dhcp6to4Ipc::handler(int /* fd */)

     Dhcp6to4Ipc& ipc = Dhcp6to4Ipc::instance();
     Pkt6Ptr pkt;

src/hooks/dhcp/high_availability/ha_service.*
    socketReadyHandler() - initial stub implementation of socket ready handler

5 years ago[970-implement-multi-threading-critical-section] Removed the enabled_ local copy... 970-implement-multi-threading-critical-section
Francis Dupont [Tue, 5 Nov 2019 14:51:38 +0000 (15:51 +0100)] 
[970-implement-multi-threading-critical-section] Removed the enabled_ local copy of the MT mode

5 years ago[970-implement-multi-threading-critical-section] Moved to Camel names
Francis Dupont [Tue, 5 Nov 2019 11:52:19 +0000 (12:52 +0100)] 
[970-implement-multi-threading-critical-section] Moved to Camel names

5 years ago[970-implement-multi-threading-critical-section] Finished first version
Francis Dupont [Mon, 4 Nov 2019 14:53:07 +0000 (15:53 +0100)] 
[970-implement-multi-threading-critical-section] Finished first version

5 years ago[970-implement-multi-threading-critical-section] First version
Francis Dupont [Mon, 4 Nov 2019 14:48:31 +0000 (15:48 +0100)] 
[970-implement-multi-threading-critical-section] First version

5 years ago[#989] updated version and fixed some typos 989-update-kea-version-on-master
Wlodek Wencel [Mon, 4 Nov 2019 11:20:27 +0000 (18:20 +0700)] 
[#989] updated version and fixed some typos

5 years ago[#974] slightly changed documentation about netconf 974-1-7-1-release tomsP35-experimental Kea-1.7.1
Wlodek Wencel [Tue, 29 Oct 2019 05:58:59 +0000 (12:58 +0700)] 
[#974] slightly changed documentation about netconf

5 years agoMerge branch '974-1-7-1-release' of https://gitlab.isc.org/isc-projects/kea into...
Wlodek Wencel [Tue, 29 Oct 2019 05:50:29 +0000 (06:50 +0100)] 
Merge branch '974-1-7-1-release' of https://gitlab.isc.org/isc-projects/kea into 974-1-7-1-release

5 years ago[#974] parsers regenerated for 1.7.1
Wlodek Wencel [Tue, 29 Oct 2019 05:49:44 +0000 (06:49 +0100)] 
[#974] parsers regenerated for 1.7.1

5 years ago[#974] copy right dates, mes files Changelog prepared for release
Wlodek Wencel [Tue, 29 Oct 2019 05:42:11 +0000 (06:42 +0100)] 
[#974] copy right dates, mes files Changelog prepared for release

5 years ago[#971] copy right dates, mes files Changelog prepared for release
Wlodek Wencel [Tue, 29 Oct 2019 05:42:11 +0000 (06:42 +0100)] 
[#971] copy right dates, mes files Changelog prepared for release

5 years ago[#971] bumped up lib versions for 1.7.1 971-lib-version-bump-up-for-1-7-1
Wlodek Wencel [Mon, 28 Oct 2019 13:55:33 +0000 (20:55 +0700)] 
[#971] bumped up lib versions for 1.7.1

5 years ago[fix-904-2] Fixed rebase failures
Francis Dupont [Mon, 28 Oct 2019 14:02:06 +0000 (15:02 +0100)] 
[fix-904-2] Fixed rebase failures

5 years ago[fix-904] Removed extra argument
Francis Dupont [Mon, 28 Oct 2019 12:49:31 +0000 (13:49 +0100)] 
[fix-904] Removed extra argument

5 years ago[904-add-ability-to-force-a-cb-update-remotely] Fixed typo 904-add-ability-to-force-a-cb-update-remotely
Francis Dupont [Mon, 28 Oct 2019 10:43:51 +0000 (11:43 +0100)] 
[904-add-ability-to-force-a-cb-update-remotely] Fixed typo

5 years ago[904-add-ability-to-force-a-cb-update-remotely] Updated Changelog entry
Francis Dupont [Mon, 28 Oct 2019 09:32:32 +0000 (10:32 +0100)] 
[904-add-ability-to-force-a-cb-update-remotely] Updated Changelog entry

5 years ago[904-add-ability-to-force-a-cb-update-remotely] Used "on demand" instead of pull...
Francis Dupont [Sun, 27 Oct 2019 18:44:24 +0000 (19:44 +0100)] 
[904-add-ability-to-force-a-cb-update-remotely] Used "on demand" instead of pull at the exception of the command name

5 years ago[904-add-ability-to-force-a-cb-update-remotely] Added ChangeLog entry for config...
Francis Dupont [Fri, 25 Oct 2019 21:07:25 +0000 (23:07 +0200)] 
[904-add-ability-to-force-a-cb-update-remotely] Added ChangeLog entry for config-backend-pull

5 years ago[904-add-ability-to-force-a-cb-update-remotely] Addressed last comments
Francis Dupont [Fri, 25 Oct 2019 20:47:24 +0000 (22:47 +0200)] 
[904-add-ability-to-force-a-cb-update-remotely] Addressed last comments

5 years ago[904-add-ability-to-force-a-cb-update-remotely] Addressed comments for the v4 part
Francis Dupont [Fri, 25 Oct 2019 16:15:42 +0000 (18:15 +0200)] 
[904-add-ability-to-force-a-cb-update-remotely] Addressed comments for the v4 part

5 years ago[904-add-ability-to-force-a-cb-update-remotely] Addressed comments but still command...
Francis Dupont [Fri, 25 Oct 2019 14:50:59 +0000 (16:50 +0200)] 
[904-add-ability-to-force-a-cb-update-remotely] Addressed comments but still command to update

5 years ago[904-add-ability-to-force-a-cb-update-remotely] Added server-update command
Francis Dupont [Sun, 6 Oct 2019 23:51:06 +0000 (01:51 +0200)] 
[904-add-ability-to-force-a-cb-update-remotely] Added server-update command

5 years ago[#752] AUTHORS, ChangeLog updated. 752-changes-to-src-lib-dhcpsrv-alloc_engine_messages-mes-they-are-never-picked-up-during-build kea-alloc-engine-v4-alloc-fail-classes
Tomek Mrugalski [Mon, 28 Oct 2019 01:07:24 +0000 (02:07 +0100)] 
[#752] AUTHORS, ChangeLog updated.

5 years ago[#752] Updated alloc_engine_messages.mes
Tomek Mrugalski [Mon, 28 Oct 2019 01:01:10 +0000 (02:01 +0100)] 
[#752] Updated alloc_engine_messages.mes

5 years agoAdd log message containing classes during allocation failure
Kristoffer Larsen [Mon, 16 Sep 2019 05:03:25 +0000 (07:03 +0200)] 
Add log message containing classes during allocation failure

5 years ago[965-fix-doxygen-warnings] Fixed trivial doxygen warnings 965-fix-doxygen-warnings
Francis Dupont [Wed, 23 Oct 2019 13:25:42 +0000 (15:25 +0200)] 
[965-fix-doxygen-warnings] Fixed trivial doxygen warnings

5 years ago[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id]... 393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id
Francis Dupont [Fri, 25 Oct 2019 15:40:07 +0000 (17:40 +0200)] 
[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id] Added ChangeLog entry for leases by hostname and co (2)

5 years ago[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id]...
Francis Dupont [Fri, 25 Oct 2019 15:30:07 +0000 (17:30 +0200)] 
[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id] Added ChangeLog entry for leases by hostname and co

5 years ago[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id]...
Francis Dupont [Fri, 25 Oct 2019 13:54:34 +0000 (15:54 +0200)] 
[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id] Addressed comments

5 years ago[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id]...
Francis Dupont [Wed, 16 Oct 2019 22:35:24 +0000 (00:35 +0200)] 
[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id] Added unit tests for new commands

5 years ago[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id]...
Francis Dupont [Wed, 16 Oct 2019 21:10:01 +0000 (23:10 +0200)] 
[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id] Added new command docs

5 years ago[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id]...
Francis Dupont [Wed, 16 Oct 2019 20:08:34 +0000 (22:08 +0200)] 
[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id] Implemented new commands

5 years ago[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id]...
Francis Dupont [Wed, 16 Oct 2019 17:02:43 +0000 (19:02 +0200)] 
[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id] Added get leases 4 and 4 by hostname to the API

5 years ago[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id]...
Francis Dupont [Wed, 16 Oct 2019 14:54:16 +0000 (16:54 +0200)] 
[393-global-search-through-leases-by-mac-or-hostname-w-o-specifying-a-subnet-id] Moves lease hostnames to lower case

5 years ago[869] ChangeLog updated. 869-add-ability-to-retrieve-configure-command-line-from-binaries
Tomek Mrugalski [Fri, 25 Oct 2019 14:41:21 +0000 (16:41 +0200)] 
[869] ChangeLog updated.

5 years ago[869-add-ability-to-retrieve-configure-command-line-from-binaries] Moved configure...
Francis Dupont [Mon, 7 Oct 2019 19:26:12 +0000 (21:26 +0200)] 
[869-add-ability-to-retrieve-configure-command-line-from-binaries] Moved configure arguments block

5 years ago[869-add-ability-to-retrieve-configure-command-line-from-binaries] Added configure...
Francis Dupont [Mon, 7 Oct 2019 19:19:40 +0000 (21:19 +0200)] 
[869-add-ability-to-retrieve-configure-command-line-from-binaries] Added configure arguments to config.report

5 years ago[#795] ChangeLog updated. 795-path-to-control-socket-in-dhcp4-example-does-not-match-ca-example
Tomek Mrugalski [Fri, 25 Oct 2019 14:20:51 +0000 (16:20 +0200)] 
[#795] ChangeLog updated.

5 years ago[#795] unit tests tweaked for new configuration
Wlodek Wencel [Tue, 10 Sep 2019 07:10:09 +0000 (09:10 +0200)] 
[#795] unit tests tweaked for new configuration

5 years ago[#795] sockets paths unified between examples and default configs
Wlodek Wencel [Mon, 9 Sep 2019 16:58:30 +0000 (18:58 +0200)] 
[#795] sockets paths unified between examples and default configs

5 years ago[remove-unused-variable-20191025-2] [fix2] Removed unused variables
Francis Dupont [Fri, 25 Oct 2019 12:25:34 +0000 (14:25 +0200)] 
[remove-unused-variable-20191025-2] [fix2] Removed unused variables

5 years ago[remove-unused-variable-20191025] [fix] Removed unused variables
Francis Dupont [Fri, 25 Oct 2019 12:14:59 +0000 (14:14 +0200)] 
[remove-unused-variable-20191025] [fix] Removed unused variables

5 years ago[219-allow-an-option-value-to-be-set-from-an-expression] Added ChangeLog for options... 219-allow-an-option-value-to-be-set-from-an-expression
Francis Dupont [Fri, 25 Oct 2019 09:26:05 +0000 (11:26 +0200)] 
[219-allow-an-option-value-to-be-set-from-an-expression] Added ChangeLog for options from expressions

5 years ago[219-allow-an-option-value-to-be-set-from-an-expression] Addressed comments
Francis Dupont [Thu, 10 Oct 2019 23:15:39 +0000 (01:15 +0200)] 
[219-allow-an-option-value-to-be-set-from-an-expression] Addressed comments

5 years ago[219-allow-an-option-value-to-be-set-from-an-expression] Added new tests and an example
Francis Dupont [Fri, 4 Oct 2019 19:46:14 +0000 (21:46 +0200)] 
[219-allow-an-option-value-to-be-set-from-an-expression] Added new tests and an example

5 years ago[219-allow-an-option-value-to-be-set-from-an-expression] Checkout: adding call tests
Francis Dupont [Fri, 4 Oct 2019 18:02:58 +0000 (20:02 +0200)] 
[219-allow-an-option-value-to-be-set-from-an-expression] Checkout: adding call tests

5 years ago[219-allow-an-option-value-to-be-set-from-an-expression] Added docs
Francis Dupont [Wed, 2 Oct 2019 19:57:31 +0000 (21:57 +0200)] 
[219-allow-an-option-value-to-be-set-from-an-expression] Added docs

5 years ago[219-allow-an-option-value-to-be-set-from-an-expression] Checkpoint: code and test...
Francis Dupont [Wed, 2 Oct 2019 16:03:40 +0000 (18:03 +0200)] 
[219-allow-an-option-value-to-be-set-from-an-expression] Checkpoint: code and test done, todo docs

5 years ago[219-allow-an-option-value-to-be-set-from-an-expression] Checkpoint: to do add action...
Francis Dupont [Wed, 2 Oct 2019 10:35:56 +0000 (12:35 +0200)] 
[219-allow-an-option-value-to-be-set-from-an-expression] Checkpoint: to do add action logs and doc

5 years ago[219-allow-an-option-value-to-be-set-from-an-expression] Checkpoint: almost finished
Francis Dupont [Tue, 1 Oct 2019 23:22:09 +0000 (01:22 +0200)] 
[219-allow-an-option-value-to-be-set-from-an-expression] Checkpoint: almost finished

5 years ago[219-allow-an-option-value-to-be-set-from-an-expression] Checkpoint: wrote flex optio...
Francis Dupont [Tue, 1 Oct 2019 15:37:21 +0000 (17:37 +0200)] 
[219-allow-an-option-value-to-be-set-from-an-expression] Checkpoint: wrote flex option code, to do tests, to finish doc

5 years ago[677-kea4-not-honouring-the-p-switch] Added ChangeLog for -p switch improvement 677-kea4-not-honouring-the-p-switch
Francis Dupont [Fri, 25 Oct 2019 08:53:22 +0000 (10:53 +0200)] 
[677-kea4-not-honouring-the-p-switch] Added ChangeLog for -p switch improvement

5 years ago[677-kea4-not-honouring-the-p-switch] Improved -p support
Francis Dupont [Fri, 11 Oct 2019 12:46:00 +0000 (14:46 +0200)] 
[677-kea4-not-honouring-the-p-switch] Improved -p support

5 years ago[962-implement-the-multi_threading_mgr-h-idea] Added ChangeLog entry for MultiThreadi... 962-implement-the-multi_threading_mgr-h-idea 966-implement-a-generic-hash-utility
Francis Dupont [Wed, 23 Oct 2019 15:18:52 +0000 (17:18 +0200)] 
[962-implement-the-multi_threading_mgr-h-idea] Added ChangeLog entry for MultiThreadingMgr

5 years ago[962-implement-the-multi_threading_mgr-h-idea] Fixed doxygen
Francis Dupont [Wed, 23 Oct 2019 12:59:31 +0000 (14:59 +0200)] 
[962-implement-the-multi_threading_mgr-h-idea] Fixed doxygen

5 years ago[962-implement-the-multi_threading_mgr-h-idea] Addressed comments
Francis Dupont [Wed, 23 Oct 2019 12:52:20 +0000 (14:52 +0200)] 
[962-implement-the-multi_threading_mgr-h-idea] Addressed comments

5 years ago[962-implement-the-multi_threading_mgr-h-idea] Merged into one class
Francis Dupont [Wed, 23 Oct 2019 12:38:52 +0000 (14:38 +0200)] 
[962-implement-the-multi_threading_mgr-h-idea] Merged into one class

5 years ago[962-implement-the-multi_threading_mgr-h-idea] Fixed trivial typo in comment
Francis Dupont [Tue, 22 Oct 2019 20:45:42 +0000 (22:45 +0200)] 
[962-implement-the-multi_threading_mgr-h-idea] Fixed trivial typo in comment

5 years ago[962-implement-the-multi_threading_mgr-h-idea] Added the Multi Threading Manager
Francis Dupont [Tue, 22 Oct 2019 10:51:29 +0000 (12:51 +0200)] 
[962-implement-the-multi_threading_mgr-h-idea] Added the Multi Threading Manager

5 years ago[#900,!561] Updated ChangeLog 900-kea-1-6-0-dropping-packets-with-a-null-in-hostname
Thomas Markwalder [Wed, 23 Oct 2019 12:58:47 +0000 (08:58 -0400)] 
[#900,!561] Updated ChangeLog

5 years ago[#900,!561] Addressed review comments
Thomas Markwalder [Tue, 22 Oct 2019 14:46:10 +0000 (10:46 -0400)] 
[#900,!561] Addressed review comments

src/lib/dhcp/libdhcp++.cc
    Cleaned up necessary exception decls

src/lib/dhcp/option.h
    Added commentary for SkipThisOptionError

src/lib/dhcp/option_definition.cc
    Cleaned up unnecessary exception decls

src/lib/dhcp/option_string.cc
    Replaced NULL with nul

src/lib/testutils/gtest_utils.h
    Added emissions of exception type name

5 years ago[#900,!561] kea-dhcp4/6 now quietly drop empty or all-null string options
Thomas Markwalder [Mon, 21 Oct 2019 14:38:53 +0000 (10:38 -0400)] 
[#900,!561] kea-dhcp4/6 now quietly drop empty or all-null string options

src/lib/dhcp/option.h
    class SkipThisOptionError - new exception type

src/lib/dhcp/libdhcp++.cc
    LibDHCP::unpackOptions4()
    LibDHCP::unpackOptions6() - explicitly catches and handles
    SkipThisOptionError expceptions

src/lib/dhcp/option_definition.cc
    OptionDefinition::optionFactory() - now rethrows SkipThisOptionError

src/lib/dhcp/option_int.h
    OptionInt::unpack() - altered ambiguous exception text

src/lib/dhcp/option_int_array.h
    OptionIntArray::unpack() - altered ambiguous exception text

src/lib/dhcp/option_string.cc
    OptionString::unpack() - now throws SkipThisOptionError if option, once
    trimmed, is empty

src/lib/dhcp/tests/option_string_unittest.cc
    Updated tests

src/lib/dhcp/tests/pkt4_unittest.cc
    TEST_F(Pkt4Test, testSkipThisOptionError) - new test

src/lib/dhcp/tests/pkt6_unittest.cc
    TEST_F(Pkt6Test, testSkipThisOptionError) - new test

src/lib/dhcpsrv/tests/cfg_option_unittest.cc
    Updated expected exception text

src/lib/testutils/gtest_utils.h
    Added two macros to emit exception info on throws.
    #define EXPECT_NO_THROW_LOG(statement)
    #define ASSERT_NO_THROW_LOG(statement)

5 years ago[919-bind1st-and-bind2nd-were-deprecated] Added ChangeLog entry for bind1st/bind2nd 919-bind1st-and-bind2nd-were-deprecated
Francis Dupont [Tue, 22 Oct 2019 07:46:45 +0000 (09:46 +0200)] 
[919-bind1st-and-bind2nd-were-deprecated] Added ChangeLog entry for bind1st/bind2nd

5 years ago[919-bind1st-and-bind2nd-were-deprecated] Updated bind1st/bind2nd with bind or lambda
Francis Dupont [Sat, 21 Sep 2019 16:40:15 +0000 (18:40 +0200)] 
[919-bind1st-and-bind2nd-were-deprecated] Updated bind1st/bind2nd with bind or lambda

5 years ago[868-the-examples-directory-in-main-dir-not-doc-examples-is-useless-and-should-be... 868-the-examples-directory-in-main-dir-not-doc-examples-is-useless-and-should-be-removed
Francis Dupont [Thu, 3 Oct 2019 07:15:17 +0000 (09:15 +0200)] 
[868-the-examples-directory-in-main-dir-not-doc-examples-is-useless-and-should-be-removed] Removes topdir examples

5 years ago[master] Fixed ChangeLog last inserted entry
Francis Dupont [Fri, 18 Oct 2019 22:10:06 +0000 (00:10 +0200)] 
[master] Fixed ChangeLog last inserted entry

5 years ago[937-doc-should-mention-rfc8357-relay-port-as-supported] Added RFC 8357 support in doc 937-doc-should-mention-rfc8357-relay-port-as-supported
Francis Dupont [Mon, 7 Oct 2019 09:26:50 +0000 (11:26 +0200)] 
[937-doc-should-mention-rfc8357-relay-port-as-supported] Added RFC 8357 support in doc

5 years ago[497-kea-uses-deprecated-header] Fixed boost/{integer,math}/common_factor.h 497-kea-uses-deprecated-header
Francis Dupont [Sun, 6 Oct 2019 19:53:12 +0000 (21:53 +0200)] 
[497-kea-uses-deprecated-header] Fixed boost/{integer,math}/common_factor.h

5 years ago[497-kea-uses-deprecated-header] Revert "[497-kea-uses-deprecated-header] Reverted...
Francis Dupont [Sun, 6 Oct 2019 16:41:25 +0000 (18:41 +0200)] 
[497-kea-uses-deprecated-header] Revert "[497-kea-uses-deprecated-header] Reverted the -isystem"

This reverts commit 9c1ab2136422d20d916338d210708074a412d502.

5 years ago[497-kea-uses-deprecated-header] Reverted the -isystem
Francis Dupont [Fri, 4 Oct 2019 22:19:56 +0000 (00:19 +0200)] 
[497-kea-uses-deprecated-header] Reverted the -isystem

5 years ago[#754,!558] Addressed belated review comment 754-possible-bug-in-dhcpv6-allocation-engine-code-2
Thomas Markwalder [Fri, 18 Oct 2019 14:40:31 +0000 (10:40 -0400)] 
[#754,!558] Addressed belated review comment

5 years ago[#754,!558] Updated ChangeLog
Thomas Markwalder [Fri, 18 Oct 2019 14:28:36 +0000 (10:28 -0400)] 
[#754,!558] Updated ChangeLog

5 years ago[#754,!558] Update v6 lease data for dynamic leases with HRs
Thomas Markwalder [Fri, 18 Oct 2019 12:49:36 +0000 (08:49 -0400)] 
[#754,!558] Update v6 lease data for dynamic leases with HRs

src/lib/dhcpsrv/alloc_engine.cc
    AllocEngine::allocateLeases6(ClientContext6& ctx) - add call to
    updateLeaseData() to case 3.

src/lib/dhcpsrv/tests/alloc_engine6_unittest.cc
    TEST_F(AllocEngine6Test, hostDynamicAddress)
    TEST_F(AllocEngine6Test, globalHostDynamicAddress) - revamped to
    verify assignment and update for REQUESTs

5 years ago[#955] revert changes to hammer that removed repository_url 955-fixing-repo_url-in-hammer-py
Wlodek Wencel [Wed, 16 Oct 2019 06:42:07 +0000 (13:42 +0700)] 
[#955] revert changes to hammer that removed repository_url

5 years ago[392-search-of-reservations-by-hostname] Added ChangeLog entry for HR by hostname 392-search-of-reservations-by-hostname
Francis Dupont [Tue, 15 Oct 2019 09:49:27 +0000 (11:49 +0200)] 
[392-search-of-reservations-by-hostname] Added ChangeLog entry for HR by hostname

5 years ago[392-search-of-reservations-by-hostname] Added a reference in reservation-get-by...
Francis Dupont [Tue, 15 Oct 2019 09:44:55 +0000 (11:44 +0200)] 
[392-search-of-reservations-by-hostname] Added a reference in reservation-get-by-hostname to admin/MySQL

5 years ago[392-search-of-reservations-by-hostname] Addressed some comments
Francis Dupont [Mon, 14 Oct 2019 14:30:18 +0000 (16:30 +0200)] 
[392-search-of-reservations-by-hostname] Addressed some comments

5 years ago[392-search-of-reservations-by-hostname] Addressed comments
Francis Dupont [Fri, 11 Oct 2019 23:04:53 +0000 (01:04 +0200)] 
[392-search-of-reservations-by-hostname] Addressed comments

5 years ago[392-search-of-reservations-by-hostname] Finished core stuff
Francis Dupont [Mon, 30 Sep 2019 14:06:03 +0000 (16:06 +0200)] 
[392-search-of-reservations-by-hostname] Finished core stuff

5 years ago[392-search-of-reservations-by-hostname] Checkpoint: did tests, todo doc and hook
Francis Dupont [Mon, 30 Sep 2019 13:33:57 +0000 (15:33 +0200)] 
[392-search-of-reservations-by-hostname] Checkpoint: did tests, todo doc and hook

5 years ago[392-search-of-reservations-by-hostname] Checkpoint: updated shcemas, todo tests
Francis Dupont [Sun, 29 Sep 2019 21:01:44 +0000 (23:01 +0200)] 
[392-search-of-reservations-by-hostname] Checkpoint: updated shcemas, todo tests

5 years ago[392-search-of-reservations-by-hostname] Checkpont: add new methods - tests to write
Francis Dupont [Sun, 29 Sep 2019 07:28:13 +0000 (09:28 +0200)] 
[392-search-of-reservations-by-hostname] Checkpont: add new methods - tests to write

5 years ago[#934,!531] kea-centos-8 for virtualbox and lxc uploaded and available 906-man-pages-should-be-conditional-on-built-binary 934-build-rpm-for-centos8
Wlodek Wencel [Mon, 14 Oct 2019 15:59:54 +0000 (22:59 +0700)] 
[#934,!531] kea-centos-8 for virtualbox and lxc uploaded and available

5 years ago[#934,!531] lxc-centos-8 available
Wlodek Wencel [Mon, 14 Oct 2019 14:18:13 +0000 (21:18 +0700)] 
[#934,!531] lxc-centos-8 available

5 years ago[#934,!531] added support for centos8 rpm
Wlodek Wencel [Mon, 14 Oct 2019 12:03:46 +0000 (19:03 +0700)] 
[#934,!531] added support for centos8 rpm

5 years ago[#35,!517] Updated ChangeLog 35-local-d2-dhcp-ddns-client-config 794-example-config-for-config-backend-json-does-not-have-control-channel-enabled tmark-post-35-refactor
Thomas Markwalder [Thu, 10 Oct 2019 13:00:34 +0000 (09:00 -0400)] 
[#35,!517] Updated ChangeLog

5 years ago[#35,!517] Addressed final review comments
Thomas Markwalder [Thu, 10 Oct 2019 12:29:57 +0000 (08:29 -0400)] 
[#35,!517] Addressed final review comments

src/lib/dhcpsrv/parsers/simple_parser4.cc
src/lib/dhcpsrv/parsers/simple_parser6.cc
    Fixed indentations in defaults list

5 years ago[35-local-d2-dhcp-ddns-client-config] Moved = sign
Francis Dupont [Thu, 10 Oct 2019 09:03:35 +0000 (11:03 +0200)] 
[35-local-d2-dhcp-ddns-client-config] Moved = sign

5 years ago[35-local-d2-dhcp-ddns-client-config] Caught a dhcp4 reference in dhcp6 doc
Francis Dupont [Thu, 10 Oct 2019 08:58:21 +0000 (10:58 +0200)] 
[35-local-d2-dhcp-ddns-client-config] Caught a dhcp4 reference in dhcp6 doc

5 years ago[35-local-d2-dhcp-ddns-client-config] Updated kea6/with-ddns.json example
Francis Dupont [Thu, 10 Oct 2019 08:50:20 +0000 (10:50 +0200)] 
[35-local-d2-dhcp-ddns-client-config] Updated kea6/with-ddns.json example

5 years ago[35-local-d2-dhcp-ddns-client-config] Updated enable-updates description
Francis Dupont [Thu, 10 Oct 2019 08:44:32 +0000 (10:44 +0200)] 
[35-local-d2-dhcp-ddns-client-config] Updated enable-updates description