]> git.ipfire.org Git - thirdparty/kea.git/log
thirdparty/kea.git
8 years ago[5046] Set set-config command and fixed "be be" typo
Francis Dupont [Thu, 22 Dec 2016 23:55:48 +0000 (00:55 +0100)] 
[5046] Set set-config command and fixed "be be" typo

8 years ago[5046] Removed spurious spaces
Francis Dupont [Thu, 22 Dec 2016 22:28:50 +0000 (23:28 +0100)] 
[5046] Removed spurious spaces

8 years ago[5046] CommandMgr dups the connection socket prior to executing command
Thomas Markwalder [Thu, 22 Dec 2016 18:38:00 +0000 (13:38 -0500)] 
[5046] CommandMgr dups the connection socket prior to executing command

src/lib/config/command_mgr.cc
    CommandMgr::commandReader(int sockfd) - duplicates the connection
    socket to use for repsonding in case the command closes the channel.

src/lib/testutils/io_utils.cc
    fileExists() - now uses stat() function so one can use it on any
    type of file, like a unix socket

updated unit tests accordingly

8 years ago[5046] Added documentation to the admin guide for set-config
Thomas Markwalder [Thu, 22 Dec 2016 14:24:35 +0000 (09:24 -0500)] 
[5046] Added documentation to the admin guide for set-config

8 years ago[5046] Undo a couple of minor nits
Thomas Markwalder [Wed, 21 Dec 2016 20:51:24 +0000 (15:51 -0500)] 
[5046] Undo a couple of minor nits

8 years ago[5046] Added set-config command handler test to dhcp4 unit tests
Thomas Markwalder [Fri, 16 Dec 2016 16:02:04 +0000 (11:02 -0500)] 
[5046] Added set-config command handler  test to dhcp4 unit tests

8 years ago[5046] Move apply logging and config commit from processConfig to set-config handler
Thomas Markwalder [Thu, 15 Dec 2016 21:15:26 +0000 (16:15 -0500)] 
[5046] Move apply logging and config commit from processConfig to set-config handler

src/bin/dhcp4/ctrl_dhcp4_srv.cc
    commandConfigReloadHandler() - use commandSetConfigHandler()
    instead of processConfig() to account for logging config

    commandSetConfigHandler() - apply logging config and commit config here instead of
    in processConfig()

src/bin/dhcp4/tests/dhcp4_test_utils.h
     ~NakedDhcpv4Srv() - removed unecesary initLogger call

src/bin/dhcp4/tests/kea_controller_unittest.cc
     ~JSONFileBackendTest() - removed unecessary call to setDefaultLogging

src/bin/dhcp6/ctrl_dhcp6_srv.cc
    commandConfigReloadHandler() - use commandSetConfigHandler()
    instead of processConfig() to account for logging config

    commandSetConfigHandler() - apply logging config and commit config here instead of
    in processConfig()

src/bin/dhcp6/tests/ctrl_dhcp6_srv_unittest.cc
    createUnixChannelServer() -  added config commit so command channel behavior
    is correct

    TEST_F(CtrlDhcpv6SrvTest, configReload)
        Wrap configuration in Dhcp6 element

    TEST_F(CtrlChannelDhcpv6SrvTest, set_config)
        Turn off timers in config

src/lib/dhcpsrv/srv_config.cc
    SrvConfig::applyLoggingCfg() - remove logic added to not call manager.process
    when there are no specs.

8 years ago[5046] Minor cleanups
Thomas Markwalder [Fri, 9 Dec 2016 21:15:25 +0000 (16:15 -0500)] 
[5046] Minor cleanups

8 years ago[5046] Implement set-config command in kea-dhcp4
Thomas Markwalder [Fri, 9 Dec 2016 21:08:24 +0000 (16:08 -0500)] 
[5046] Implement set-config command in kea-dhcp4

    Mirror the changes made in kea-dhcp6.

8 years ago[5046] Avoid wiping logging when config is empty
Thomas Markwalder [Fri, 9 Dec 2016 21:06:38 +0000 (16:06 -0500)] 
[5046] Avoid wiping logging when config is empty

src/lib/dhcpsrv/srv_config.cc
    SrvConfig::applyLoggingCfg() - now only calls LoggerManager::process()
    if the logger config isn't empty

src/bin/dhcp6/ctrl_dhcp6_srv.cc
src/bin/dhcp6/tests/dhcp6_test_utils.cc
    Minor clean up and commentary

src/bin/dhcp6/kea_controller.cc
    configure(const std::string& file_name)
    - Removed initial rollback, now done in commandSetConfigHandler()

src/bin/dhcp6/tests/ctrl_dhcp6_srv_unittest.cc
   - Removed unnecessary call to initLogger

8 years ago[5046] Fixed logger setup on set-config
Thomas Markwalder [Thu, 8 Dec 2016 19:56:17 +0000 (14:56 -0500)] 
[5046] Fixed logger setup on set-config

src/bin/dhcp6/ctrl_dhcp6_srv.cc
    ControlledDhcpv6Srv::commandSetConfigHandler()
    - Add logger config
    - Use processConfig() directly instead of config-reload command

src/bin/dhcp6/kea_controller.cc
    configure(const std::string& file_name)
      - Remove logger config
      - Use set-config command instead of config-reload

src/bin/dhcp6/tests/ctrl_dhcp6_srv_unittest.cc
    createUnixChannelServer()
    - added call to initLogger() to revert logging to unit test logger

src/bin/dhcp6/tests/dhcp6_test_utils.cc
    BaseServerTest::~BaseServerTest() {
    - added call to initLogger() to revert logging to unit test logger

8 years ago[5046] kea-dhcp6 now implements set-config command
Thomas Markwalder [Wed, 7 Dec 2016 15:32:22 +0000 (10:32 -0500)] 
[5046] kea-dhcp6 now implements set-config command

src/bin/dhcp6/ctrl_dhcp6_srv.h
src/bin/dhcp6/ctrl_dhcp6_srv.cc
    ControlledDhcpv6Srv::commandSetConfigHandler() - new method to process
    the set-config command.

    ControlledDhcpv6Srv::processCommand() - call new set-config handler

    ControlledDhcpv6Srv::processConfig() - added logic to apply logging
    and commit configuration after  successful reconfig

    ControlledDhcpv6Srv::ControlledDhcpv6Srv(uint16_t port) - added registration
    of set-config command

    ControlledDhcpv6Srv::~ControlledDhcpv6Srv() - unregisters set-config command

src/bin/dhcp6/json_config_parser.cc
    configureCommandChannel() - extracted logic to reconfigure command channel
    to its own fucntion

src/bin/dhcp6/kea_controller.cc
    configure() - removed logic to apply logging and commit config, now done
    in ControlledDhcpv6Srv::processConfig()

src/bin/dhcp6/tests/ctrl_dhcp6_srv_unittest.cc
    TEST_F(CtrlChannelDhcpv6SrvTest, set_config) - new test to exercise the
    set-config command

8 years ago[master] Added ChangeLog entry for #5074. trac5046_base trac5075_base
Marcin Siodelski [Fri, 2 Dec 2016 15:41:22 +0000 (16:41 +0100)] 
[master] Added ChangeLog entry for #5074.

8 years ago[master] Merge branch 'trac5074'
Marcin Siodelski [Fri, 2 Dec 2016 15:39:51 +0000 (16:39 +0100)] 
[master] Merge branch 'trac5074'

8 years ago[5074] Removed spurious whitespace.
Marcin Siodelski [Fri, 2 Dec 2016 15:38:50 +0000 (16:38 +0100)] 
[5074] Removed spurious whitespace.

8 years ago[trac5074] Minor rewording in libprocess.dox
Thomas Markwalder [Fri, 2 Dec 2016 15:09:02 +0000 (10:09 -0500)] 
[trac5074] Minor rewording in libprocess.dox

8 years ago[5074] A couple of trivial fixes in the comments.
Marcin Siodelski [Thu, 1 Dec 2016 17:25:25 +0000 (18:25 +0100)] 
[5074] A couple of trivial fixes in the comments.

8 years ago[5074] Split developer's documentation of CPL and D2.
Marcin Siodelski [Thu, 1 Dec 2016 15:29:07 +0000 (16:29 +0100)] 
[5074] Split developer's documentation of CPL and D2.

8 years ago[5074] Fix doxygen refs after migration to isc::process namespace.
Marcin Siodelski [Thu, 1 Dec 2016 13:55:25 +0000 (14:55 +0100)] 
[5074] Fix doxygen refs after migration to isc::process namespace.

8 years ago[5074] Files in libkea-process moved to isc::process namespace.
Marcin Siodelski [Thu, 1 Dec 2016 13:43:01 +0000 (14:43 +0100)] 
[5074] Files in libkea-process moved to isc::process namespace.

8 years ago[5074] Rename d2_logger to dctl_logger in libkea-process.
Marcin Siodelski [Thu, 1 Dec 2016 12:43:58 +0000 (13:43 +0100)] 
[5074] Rename d2_logger to dctl_logger in libkea-process.

8 years ago[5074] Set environment variable for pid files within libkea-process tests.
Marcin Siodelski [Thu, 1 Dec 2016 12:29:47 +0000 (13:29 +0100)] 
[5074] Set environment variable for pid files within libkea-process tests.

8 years ago[5074] Created libkea-process library.
Marcin Siodelski [Wed, 30 Nov 2016 12:38:18 +0000 (13:38 +0100)] 
[5074] Created libkea-process library.

8 years ago[master] Merged trac5057 (configure vs gtest-1.8.0) trac4631b_base
Francis Dupont [Mon, 28 Nov 2016 20:21:45 +0000 (21:21 +0100)] 
[master] Merged trac5057 (configure vs gtest-1.8.0)

8 years ago[master] ChangeLog updated after #5027 merge.
Tomek Mrugalski [Wed, 23 Nov 2016 13:12:50 +0000 (14:12 +0100)] 
[master] ChangeLog updated after #5027 merge.

8 years ago[master] Merge branch 'trac5027' (premium support)
Tomek Mrugalski [Wed, 23 Nov 2016 13:10:36 +0000 (14:10 +0100)] 
[master] Merge branch 'trac5027' (premium support)

8 years ago[trac5027] Renamed "found"=>yes, "not found"=>no for premium
Tomek Mrugalski [Wed, 23 Nov 2016 13:09:46 +0000 (14:09 +0100)] 
[trac5027] Renamed "found"=>yes, "not found"=>no for premium

8 years ago[master] ChangeLog updated.
Tomek Mrugalski [Tue, 22 Nov 2016 17:53:55 +0000 (18:53 +0100)] 
[master] ChangeLog updated.

8 years ago[master] Merge branch 'trac5023' (contexts in v6 pools)
Tomek Mrugalski [Tue, 22 Nov 2016 17:52:44 +0000 (18:52 +0100)] 
[master] Merge branch 'trac5023' (contexts in v6 pools)

# Conflicts:
# src/lib/dhcpsrv/pool.h

8 years ago[master] Fixed unused parameter error in dhcp6_src.cc
Thomas Markwalder [Mon, 21 Nov 2016 20:14:50 +0000 (15:14 -0500)] 
[master] Fixed unused parameter error in dhcp6_src.cc

src/bin/dhcp6/dhcp6_srv.h
src/bin/dhcp6/dhcp6_srv.cc
    Removed unused ctx parameter from Dhcpv6Srv::appendRequestedOptions()

8 years ago[5057] Added --with-gtest-source googletest directory helper
Francis Dupont [Mon, 21 Nov 2016 14:10:19 +0000 (15:10 +0100)] 
[5057] Added --with-gtest-source googletest directory helper

8 years ago[master] Replaced empty for old Botan versions
Francis Dupont [Wed, 16 Nov 2016 07:47:23 +0000 (08:47 +0100)] 
[master] Replaced empty for old Botan versions

8 years ago[master] Updated git hash
Francis Dupont [Wed, 16 Nov 2016 07:18:54 +0000 (08:18 +0100)] 
[master] Updated git hash

8 years ago[master] Finished merge of trac3908 (port cryptolink fixes)
Francis Dupont [Wed, 16 Nov 2016 07:17:32 +0000 (08:17 +0100)] 
[master] Finished merge of trac3908 (port cryptolink fixes)

8 years ago[3908] Improved default ctor (missed)
Francis Dupont [Wed, 16 Nov 2016 06:54:30 +0000 (07:54 +0100)] 
[3908] Improved default ctor (missed)

8 years ago[master] ChangeLog, AUTHORS updated after github #32 merge
Tomek Mrugalski [Tue, 15 Nov 2016 05:26:18 +0000 (14:26 +0900)] 
[master] ChangeLog, AUTHORS updated after github #32 merge

8 years ago[github32] Merge branch 'vlegout-spelling' into github32 (spelling fixes)
Tomek Mrugalski [Mon, 14 Nov 2016 05:41:33 +0000 (14:41 +0900)] 
[github32] Merge branch 'vlegout-spelling' into github32 (spelling fixes)

8 years agofix some spelling mistakes 32/head
Vincent Legout [Tue, 8 Nov 2016 12:26:26 +0000 (13:26 +0100)] 
fix some spelling mistakes

8 years ago[master] Fixing doxygen warnings after merge of #5016.
Marcin Siodelski [Mon, 7 Nov 2016 19:36:29 +0000 (20:36 +0100)] 
[master] Fixing doxygen warnings after merge of #5016.

Trivial changes.

8 years ago[master] Added ChangeLog entry for #5029.
Marcin Siodelski [Mon, 7 Nov 2016 16:32:41 +0000 (17:32 +0100)] 
[master] Added ChangeLog entry for #5029.

8 years ago[master] Merge branch 'trac5029'
Marcin Siodelski [Mon, 7 Nov 2016 16:05:49 +0000 (17:05 +0100)] 
[master] Merge branch 'trac5029'

8 years ago[master] Corrected ticket number for entry 1107.
Thomas Markwalder [Mon, 7 Nov 2016 14:10:13 +0000 (09:10 -0500)] 
[master] Corrected ticket number for entry 1107.

8 years ago[5057] check the (static) library too
Francis Dupont [Sat, 5 Nov 2016 15:40:16 +0000 (16:40 +0100)] 
[5057] check the (static) library too

8 years ago[master] Added ChangeLog entry for github pull request #24. trac5057_base
Marcin Siodelski [Fri, 4 Nov 2016 21:01:39 +0000 (22:01 +0100)] 
[master] Added ChangeLog entry for github pull request #24.

8 years ago[master] Merge branch 'trac5016'
Marcin Siodelski [Fri, 4 Nov 2016 20:04:09 +0000 (21:04 +0100)] 
[master] Merge branch 'trac5016'

8 years ago[master] Added ChangeLog entry for #5055.
Marcin Siodelski [Fri, 4 Nov 2016 20:01:04 +0000 (21:01 +0100)] 
[master] Added ChangeLog entry for #5055.

8 years ago[3908] Addressed last comments
Francis Dupont [Fri, 4 Nov 2016 17:33:10 +0000 (18:33 +0100)] 
[3908] Addressed last comments

8 years ago[master] Merge branch 'trac5055'
Marcin Siodelski [Fri, 4 Nov 2016 16:35:33 +0000 (17:35 +0100)] 
[master] Merge branch 'trac5055'

8 years ago[5055] Use pkgincludedir in several Makefile.am.
Marcin Siodelski [Fri, 4 Nov 2016 13:11:03 +0000 (14:11 +0100)] 
[5055] Use pkgincludedir in several Makefile.am.

8 years ago[master] Regen with flex 2.6.1 (last good)
Francis Dupont [Thu, 3 Nov 2016 13:36:43 +0000 (13:36 +0000)] 
[master] Regen with flex 2.6.1 (last good)

8 years ago[master] Regen with older but correct flex
Francis Dupont [Thu, 3 Nov 2016 13:18:12 +0000 (14:18 +0100)] 
[master] Regen with older but correct flex

8 years ago[master] Merged trac5060 (specialize eval flex/bison)
Francis Dupont [Thu, 3 Nov 2016 12:31:45 +0000 (13:31 +0100)] 
[master] Merged trac5060 (specialize eval flex/bison)

8 years ago[trac5060] regen lexer
Francis Dupont [Thu, 3 Nov 2016 12:26:32 +0000 (12:26 +0000)] 
[trac5060] regen lexer

8 years ago[5060] More yy -> eval in lexer source
Francis Dupont [Thu, 3 Nov 2016 12:25:14 +0000 (13:25 +0100)] 
[5060] More yy -> eval in lexer source

8 years ago[5060] lexer.cc regenerated
Tomek Mrugalski [Thu, 3 Nov 2016 10:39:08 +0000 (11:39 +0100)] 
[5060] lexer.cc regenerated

8 years ago[5060] Compilation fix in lexer.ll
Tomek Mrugalski [Thu, 3 Nov 2016 10:38:56 +0000 (11:38 +0100)] 
[5060] Compilation fix in lexer.ll

8 years ago[5029] Implemented test for multi stage boot for Cassandra.
Marcin Siodelski [Thu, 3 Nov 2016 08:17:53 +0000 (09:17 +0100)] 
[5029] Implemented test for multi stage boot for Cassandra.

8 years ago[master] Copy-paste error corrected.
Tomek Mrugalski [Wed, 2 Nov 2016 21:46:15 +0000 (22:46 +0100)] 
[master] Copy-paste error corrected.

8 years ago[master] Added ChangeLog entry for pull request #31.
Marcin Siodelski [Wed, 2 Nov 2016 21:26:43 +0000 (22:26 +0100)] 
[master] Added ChangeLog entry for pull request #31.

8 years ago[master] Merge branch 'github31'
Marcin Siodelski [Wed, 2 Nov 2016 21:08:36 +0000 (22:08 +0100)] 
[master] Merge branch 'github31'

8 years ago[github31] Updated AUTHORS file.
Marcin Siodelski [Wed, 2 Nov 2016 21:06:59 +0000 (22:06 +0100)] 
[github31] Updated AUTHORS file.

8 years ago[github31] Slightly longer intervals in LFC timer tests.
Marcin Siodelski [Wed, 2 Nov 2016 14:28:18 +0000 (15:28 +0100)] 
[github31] Slightly longer intervals in LFC timer tests.

This is to make sure that the server doesn't run LFC twice before
it is reconfigured.

8 years ago[master] Added Changelog entry 1183 for #5058
Thomas Markwalder [Wed, 2 Nov 2016 14:26:07 +0000 (10:26 -0400)] 
[master] Added Changelog entry 1183 for #5058

8 years ago[5027] configure.ac corrected.
Tomek Mrugalski [Wed, 2 Nov 2016 14:03:52 +0000 (15:03 +0100)] 
[5027] configure.ac corrected.

8 years agoMerge branch 'trac5058'
Thomas Markwalder [Wed, 2 Nov 2016 13:53:06 +0000 (09:53 -0400)] 
Merge branch 'trac5058'

8 years ago[5027] Glue added in configure.ac/Makefile.am for premium content.
Tomek Mrugalski [Wed, 2 Nov 2016 13:46:21 +0000 (14:46 +0100)] 
[5027] Glue added in configure.ac/Makefile.am for premium content.

8 years ago[github31] Merge branch 'eest-lfc_test_fix' into github31
Marcin Siodelski [Wed, 2 Nov 2016 12:58:43 +0000 (13:58 +0100)] 
[github31] Merge branch 'eest-lfc_test_fix' into github31

8 years ago[5058] - Addressed review comments
Thomas Markwalder [Tue, 1 Nov 2016 15:00:29 +0000 (11:00 -0400)] 
[5058] - Addressed review comments

    Fixed typos and added decline lease checks for DHCPv6

src/lib/dhcp/duid.h
src/lib/dhcp/duid.cc
src/lib/dhcp/tests/duid_unittest.cc
    - Replaced DUID::generateEmpty() with DUID::EMPTY() which returns
    a constant reference to a static DUID instance.  This facilitates
    comparisions.
    - Updated TEST(DuidTest,empty) accordingly

src/lib/dhcpsrv/csv_lease_file6.cc
    CSVLeaseFile6::next() - added test to permit the Empty DUID
    only if state is STATE_DECLINED.

src/lib/dhcpsrv/lease.cc
    Lease6::decline() - modified to use DUID::EMPTY().

src/lib/dhcpsrv/tests/csv_lease_file4_unittest.cc
    Fixed Typos

src/lib/dhcpsrv/tests/csv_lease_file6_unittest.cc
    TEST_F(CSVLeaseFile6Test, declinedLeaseTest) - new test to
    verify proper handling of declined leases

8 years ago[trac5060] regen
Francis Dupont [Tue, 1 Nov 2016 13:47:05 +0000 (13:47 +0000)] 
[trac5060] regen

8 years ago[5060] yy prefix -> eval
Francis Dupont [Tue, 1 Nov 2016 13:41:49 +0000 (14:41 +0100)] 
[5060] yy prefix -> eval

8 years ago[master] Regenerated lexer.ll with flex 2.6.2 (last) trac5060_base
Francis Dupont [Tue, 1 Nov 2016 10:23:01 +0000 (11:23 +0100)] 
[master] Regenerated lexer.ll with flex 2.6.2 (last)

8 years ago[master] Fixed configure.ac issue with checking for gtest presence.
Marcin Siodelski [Mon, 31 Oct 2016 12:09:06 +0000 (13:09 +0100)] 
[master] Fixed configure.ac issue with checking for gtest presence.

The test requires that the boost headers are included, otherwise the
test reports that gtest doesn't support XXX_TRUE() macros. This
change was okayed on jabber.

8 years ago[5029] Allocation engine allows for multiple leases w/ the same HW addr.
Marcin Siodelski [Mon, 31 Oct 2016 12:03:32 +0000 (13:03 +0100)] 
[5029] Allocation engine allows for multiple leases w/ the same HW addr.

8 years ago[5029] Implemented test for multi stage boot for MySQL and Postgres.
Marcin Siodelski [Mon, 31 Oct 2016 11:01:00 +0000 (12:01 +0100)] 
[5029] Implemented test for multi stage boot for MySQL and Postgres.

8 years ago[5016] Prefix Exclude option is now defined as IPv6 prefix.
Marcin Siodelski [Sat, 29 Oct 2016 11:31:52 +0000 (13:31 +0200)] 
[5016] Prefix Exclude option is now defined as IPv6 prefix.

8 years ago[5016] Corrected some other minor issues as a result of review.
Marcin Siodelski [Sat, 29 Oct 2016 11:14:39 +0000 (13:14 +0200)] 
[5016] Corrected some other minor issues as a result of review.

8 years ago[5016] Prefix Exclude option instance created for a pool.
Marcin Siodelski [Sat, 29 Oct 2016 10:42:48 +0000 (12:42 +0200)] 
[5016] Prefix Exclude option instance created for a pool.

8 years ago[5058] CSV lease file loading now emits error log for each invalid row
Thomas Markwalder [Fri, 28 Oct 2016 19:23:47 +0000 (15:23 -0400)] 
[5058] CSV lease file loading now emits error log for each invalid row

src/bin/lfc/tests/lfc_controller_unittests.cc
    Fixed test data

src/lib/dhcpsrv/dhcpsrv_messages.mes
    added new error log message DHCPSRV_MEMFILE_LEASE_LOAD_ROW_ERROR

src/lib/dhcpsrv/lease_file_loader.h
    LeaseFileLoader::load() - new emits a error log for each row that
    fails to load

8 years ago[5058] CSVLeaseFile4 now properly loads declined leases
Thomas Markwalder [Fri, 28 Oct 2016 18:20:05 +0000 (14:20 -0400)] 
[5058] CSVLeaseFile4 now properly loads declined leases

src/lib/dhcpsrv/csv_lease_file4.cc
    CSVLeaseFile4::next() - modified to produce a read error
    if the hardware address is empty and the lease state
    is NOT declined.

    CSVLeaseFile4::readHWAddr() - no longer throws an exception
    if the hardware address is empty

src/lib/dhcpsrv/tests/csv_lease_file4_unittest.cc
src/lib/dhcpsrv/tests/lease_file_loader_unittest.cc
    Changed test lease data so invalid records do not
    have lease state of declined

8 years ago[5058] Added unit test to check loading declined leases from CSV file
Thomas Markwalder [Fri, 28 Oct 2016 15:46:43 +0000 (11:46 -0400)] 
[5058] Added unit test to check loading declined leases from CSV file

src/lib/dhcpsrv/tests/csv_lease_file4_unittest.cc
    TEST_F(CSVLeaseFile4Test, declinedLeaseTest) - new test

8 years ago[5016] Update server code and tests to properly use exclude option.
Marcin Siodelski [Thu, 27 Oct 2016 18:20:25 +0000 (20:20 +0200)] 
[5016] Update server code and tests to properly use exclude option.

8 years ago[master] files added to wrong repo.
Tomek Mrugalski [Thu, 27 Oct 2016 10:44:42 +0000 (12:44 +0200)] 
[master] files added to wrong repo.

8 years ago[master] Initial commit: skeleton files added
Tomek Mrugalski [Thu, 27 Oct 2016 10:43:09 +0000 (12:43 +0200)] 
[master] Initial commit: skeleton files added

8 years ago[master] Merged trac5051 (c++11 vs gtest)
Francis Dupont [Wed, 26 Oct 2016 14:08:19 +0000 (16:08 +0200)] 
[master] Merged trac5051 (c++11 vs gtest)

8 years ago[5051] Updated error message
Francis Dupont [Wed, 26 Oct 2016 14:07:02 +0000 (16:07 +0200)] 
[5051] Updated error message

8 years ago[5016] Option6PDExclude holds subnet id rather than entire prefix.
Marcin Siodelski [Tue, 25 Oct 2016 13:14:43 +0000 (15:14 +0200)] 
[5016] Option6PDExclude holds subnet id rather than entire prefix.

8 years ago[5016] Several updates unrelated to the Prefix Exclude option.
Marcin Siodelski [Mon, 24 Oct 2016 15:54:20 +0000 (17:54 +0200)] 
[5016] Several updates unrelated to the Prefix Exclude option.

8 years ago[5016] Updated documentation according to the review.
Marcin Siodelski [Mon, 24 Oct 2016 15:44:24 +0000 (17:44 +0200)] 
[5016] Updated documentation according to the review.

- Extended description of the S46 Rule Option
- Added Lightweight 4over6 to the softwire examples
- Updated Supported DHCPv6 standards with RFC6334
- Updated DHCPv6 spec file

8 years ago[5016] Merged pull request #24 from github24 and squashed it.
Marcin Siodelski [Wed, 26 Oct 2016 06:18:05 +0000 (08:18 +0200)] 
[5016] Merged pull request #24 from github24 and squashed it.

This change includes the code implemented by the pull request
submitter as well as Marcin's fixes/changes on top of it, but
without a review.

8 years ago[master] Merged trac5049 (configure displays C++ standard)
Francis Dupont [Mon, 24 Oct 2016 17:44:25 +0000 (19:44 +0200)] 
[master] Merged trac5049 (configure displays C++ standard)

8 years ago[3908] Addressed comments (no code change)
Francis Dupont [Sat, 22 Oct 2016 09:29:54 +0000 (11:29 +0200)] 
[3908] Addressed comments (no code change)

8 years ago[5055] Fixed build issues occuring after recent changes.
Marcin Siodelski [Fri, 21 Oct 2016 19:29:40 +0000 (21:29 +0200)] 
[5055] Fixed build issues occuring after recent changes.

8 years ago[5055] Install selected headers from Kea libraries.
Marcin Siodelski [Fri, 21 Oct 2016 16:43:15 +0000 (18:43 +0200)] 
[5055] Install selected headers from Kea libraries.

8 years ago[5055] Install missing headers from src/lib/dhcp.
Marcin Siodelski [Fri, 21 Oct 2016 09:23:59 +0000 (11:23 +0200)] 
[5055] Install missing headers from src/lib/dhcp.

8 years ago[master] Merged trac4636 (log4cplus 2.x support) trac5014_base
Francis Dupont [Wed, 19 Oct 2016 13:25:13 +0000 (15:25 +0200)] 
[master] Merged trac4636 (log4cplus 2.x support)

8 years ago[5023] Documentation written.
Tomek Mrugalski [Tue, 18 Oct 2016 19:03:26 +0000 (21:03 +0200)] 
[5023] Documentation written.

8 years ago[5023] DHCPv4 unit-tests implemented.
Tomek Mrugalski [Tue, 18 Oct 2016 14:30:11 +0000 (16:30 +0200)] 
[5023] DHCPv4 unit-tests implemented.

8 years ago[5023] Code fixed, unit-tests implemented.
Tomek Mrugalski [Tue, 18 Oct 2016 13:49:16 +0000 (15:49 +0200)] 
[5023] Code fixed, unit-tests implemented.

8 years ago[5051] Ported the check from trac4631
Francis Dupont [Mon, 17 Oct 2016 15:53:45 +0000 (17:53 +0200)] 
[5051] Ported the check from trac4631

8 years ago[5023] Implementation in progress
Tomek Mrugalski [Fri, 14 Oct 2016 17:33:46 +0000 (19:33 +0200)] 
[5023] Implementation in progress