]> git.ipfire.org Git - thirdparty/kea.git/log
thirdparty/kea.git
8 years ago[5458] Added a comment for processDhcpv4Query that it doesn't throw.
Marcin Siodelski [Fri, 27 Apr 2018 09:25:06 +0000 (11:25 +0200)] 
[5458] Added a comment for processDhcpv4Query that it doesn't throw.

8 years ago[5458] Make sanityCheck call compacted.
Marcin Siodelski [Fri, 27 Apr 2018 09:20:36 +0000 (11:20 +0200)] 
[5458] Make sanityCheck call compacted.

8 years ago[5458] Dhcp6Hooks declaration is back in anonymous namespace.
Marcin Siodelski [Fri, 27 Apr 2018 09:06:23 +0000 (11:06 +0200)] 
[5458] Dhcp6Hooks declaration is back in anonymous namespace.

8 years ago[5458] Eliminated new unit test failure due to issues with DUID file access
Marcin Siodelski [Fri, 27 Apr 2018 09:02:19 +0000 (11:02 +0200)] 
[5458] Eliminated new unit test failure due to issues with DUID file access

8 years ago[master] ChangeLog updated.
Tomek Mrugalski [Fri, 27 Apr 2018 06:23:52 +0000 (07:23 +0100)] 
[master] ChangeLog updated.

8 years ago[5538] User's guide corrections, makefile extended
Tomek Mrugalski [Fri, 27 Apr 2018 06:19:05 +0000 (07:19 +0100)] 
[5538] User's guide corrections, makefile extended

8 years ago[5538] Example config updated.
Tomek Mrugalski [Fri, 27 Apr 2018 06:15:52 +0000 (07:15 +0100)] 
[5538] Example config updated.

8 years ago[5538] Radius example comments updated.
Tomek Mrugalski [Fri, 27 Apr 2018 06:15:16 +0000 (07:15 +0100)] 
[5538] Radius example comments updated.

8 years ago[5538] Added secrets
Francis Dupont [Thu, 26 Apr 2018 23:13:12 +0000 (01:13 +0200)] 
[5538] Added secrets

8 years ago[5538] Merge branch 'trac5538' of ssh://git.kea.isc.org/git/kea into trac5538
Francis Dupont [Thu, 26 Apr 2018 22:54:11 +0000 (00:54 +0200)] 
[5538] Merge branch 'trac5538' of ssh://git.kea.isc.org/git/kea into trac5538

8 years ago[5538] Added radius.json tentative RADIUS config
Francis Dupont [Thu, 26 Apr 2018 22:53:17 +0000 (00:53 +0200)] 
[5538] Added radius.json tentative RADIUS config

8 years ago[5538] The hosts-databases entries are not needed.
Tomek Mrugalski [Thu, 26 Apr 2018 21:58:06 +0000 (22:58 +0100)] 
[5538] The hosts-databases entries are not needed.

8 years ago[5538] Radius docs updated and corrected.
Tomek Mrugalski [Thu, 26 Apr 2018 21:22:59 +0000 (22:22 +0100)] 
[5538] Radius docs updated and corrected.

8 years ago[5538] host-cache documentation written
Tomek Mrugalski [Thu, 26 Apr 2018 21:22:24 +0000 (22:22 +0100)] 
[5538] host-cache documentation written

8 years ago[5535] RelayInfo parser emits ip-address deprecation message
Thomas Markwalder [Thu, 26 Apr 2018 19:13:53 +0000 (15:13 -0400)] 
[5535] RelayInfo parser emits ip-address deprecation message

8 years ago[5538] RADIUS hook documentation added.
Tomek Mrugalski [Thu, 26 Apr 2018 19:11:22 +0000 (20:11 +0100)] 
[5538] RADIUS hook documentation added.

8 years ago[5535] Updated admin guide
Thomas Markwalder [Thu, 26 Apr 2018 18:42:38 +0000 (14:42 -0400)] 
[5535] Updated admin guide

8 years ago[5535] kea-dhcp6 parsing now supports relay "ip-addresses"
Thomas Markwalder [Thu, 26 Apr 2018 18:24:46 +0000 (14:24 -0400)] 
[5535] kea-dhcp6 parsing now supports relay "ip-addresses"

src/bin/dhcp6/dhcp6_lexer.ll
src/bin/dhcp6/dhcp6_parser.yy
    Modified to support "ip-address" and
    "ip-addresses" under "relay"

src/bin/dhcp6/tests/get_config_unittest.cc
    Updated per process.

src/bin/dhcp6/tests/config_parser_unittest.cc
    void checkResult() - modified to output parsing error text

    TEST_F(Dhcp6ParserTest, subnetRelayInfo)
    TEST_F(Dhcp6ParserTest, sharedNetworksDerive)
    - updated to use new Network methods

    TEST_F(Dhcp6ParserTest, subnetRelayInfoList) - new test
    to verify a list of addresses in relay

8 years ago[5535] kea-dhcp4 parsing now supports relay "ip-addresses"
Thomas Markwalder [Thu, 26 Apr 2018 17:54:45 +0000 (13:54 -0400)] 
[5535] kea-dhcp4 parsing now supports relay "ip-addresses"

src/bin/dhcp4/dhcp4_lexer.ll
src/bin/dhcp4/dhcp4_parser.yy
    Modified to support "ip-address" and
    "ip-addresses" under "relay"

src/bin/dhcp4/tests/get_config_unittest.cc
    Updated per process.

src/bin/dhcp4/tests/config_parser_unittest.cc
    void checkResult() - modified to output parsing error text

    TEST_F(Dhcp4ParserTest, subnetRelayInfo)
    TEST_F(Dhcp4ParserTest, classifySubnets)
    - updated to use new Network methods

    TEST_F(Dhcp4ParserTest, subnetRelayInfoList) - new test
    to verify a list of addresses in relay

8 years ago[5535] RelayInfo parsing handles both ip-address and ip-addresses
Thomas Markwalder [Thu, 26 Apr 2018 17:20:39 +0000 (13:20 -0400)] 
[5535] RelayInfo parsing handles both ip-address and ip-addresses

src/lib/dhcpsrv/parsers/dhcp_parsers.*
    RelayInfoParser::parse() - reworked to support either
    ip-address or ip-addresses

    RelayInfoParser::addAddress() - new parser helper method

src/lib/dhcpsrv/parsers/shared_network_parser.cc
    SharedNetwork4Parser::parse()
    SharedNetwork6Parser::parse()
    - both now parse "relay" element (was missing)

src/lib/dhcpsrv/tests/shared_network_parser_unittest.cc
    Modified to support testing "relay" element parsing
    Added new tests:
        TEST_F(SharedNetwork4ParserTest, relayInfoTests)
        TEST_F(SharedNetwork6ParserTest, relayInfoTests)

8 years ago[5458a] Merge branch 'trac5458a' of ssh://git.kea.isc.org/git/kea into trac5458a
Francis Dupont [Thu, 26 Apr 2018 14:48:02 +0000 (16:48 +0200)] 
[5458a] Merge branch 'trac5458a' of ssh://git.kea.isc.org/git/kea into trac5458a

8 years ago[5458a] Improved tests (with the plan for next steps)
Francis Dupont [Thu, 26 Apr 2018 14:47:05 +0000 (16:47 +0200)] 
[5458a] Improved tests (with the plan for next steps)

8 years ago[5535] dhcpsrv now supports multiple relay addresses in RelayInfo
Thomas Markwalder [Wed, 25 Apr 2018 18:47:21 +0000 (14:47 -0400)] 
[5535] dhcpsrv now supports multiple relay addresses in RelayInfo

src/lib/dhcpsrv/network.*
    Network::RelayInfo
    - modified to support a list of IP addresses
    - added methods:
        addAddress(const asiolink::IOAddress& addr)
        bool hasAddresses()
        bool containsAddress(const asiolink::IOAddress& addr)
        +const IOAddressList& getAddresses()

    Network
    - added wrapper methods for convenience:
        addRelayAddress(const asiolink::IOAddress& addr)
        bool hasRelays()
        bool hasRelayAddress(const asiolink::IOAddress& addr)
        const IOAddressList& getRelayAddresses()

    - toElement() - modified to output ip-addresses list

    Updated the following accordingly:
        src/lib/dhcpsrv/cfg_subnets4.cc
        src/lib/dhcpsrv/cfg_subnets6.cc
        src/lib/dhcpsrv/parsers/dhcp_parsers.cc
        src/lib/dhcpsrv/subnet.cc
        src/lib/dhcpsrv/tests/cfg_shared_networks4_unittest.cc
        src/lib/dhcpsrv/tests/cfg_shared_networks6_unittest.cc
        src/lib/dhcpsrv/tests/cfg_subnets4_unittest.cc
        src/lib/dhcpsrv/tests/cfg_subnets6_unittest.cc
        src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc
        src/lib/dhcpsrv/tests/shared_network_unittest.cc
        src/lib/dhcpsrv/tests/subnet_unittest.cc

8 years ago[master] Updated git hash
Francis Dupont [Wed, 25 Apr 2018 18:35:08 +0000 (20:35 +0200)] 
[master] Updated git hash

8 years ago[master] Merged trac5530a doc
Francis Dupont [Wed, 25 Apr 2018 18:34:16 +0000 (20:34 +0200)] 
[master] Merged trac5530a doc

8 years ago[master] Finished merge of trac5530a (Radius accounting / dhcp6 srv configured)
Francis Dupont [Wed, 25 Apr 2018 18:32:39 +0000 (20:32 +0200)] 
[master] Finished merge of trac5530a (Radius accounting / dhcp6 srv configured)

8 years ago[master] Merged trac5530a (Radius accounting / dhcp6 srv configured
Francis Dupont [Wed, 25 Apr 2018 18:29:33 +0000 (20:29 +0200)] 
[master] Merged trac5530a (Radius accounting / dhcp6 srv configured

8 years ago[5458] Corrections in the descriptions of new DHCPv6 server callouts.
Marcin Siodelski [Wed, 25 Apr 2018 17:46:42 +0000 (19:46 +0200)] 
[5458] Corrections in the descriptions of new DHCPv6 server callouts.

8 years ago[5458a] Checkpoint: code and main tests done, todo prefix and all v6 corner cases
Francis Dupont [Wed, 25 Apr 2018 04:14:22 +0000 (06:14 +0200)] 
[5458a] Checkpoint: code and main tests done, todo prefix and all v6 corner cases

8 years ago[5530a] Documentation for dhcp6_srv_configured added.
Tomek Mrugalski [Wed, 25 Apr 2018 00:59:39 +0000 (01:59 +0100)] 
[5530a] Documentation for dhcp6_srv_configured added.

8 years ago[5458a] Checkpoint: working on tests
Francis Dupont [Mon, 23 Apr 2018 15:09:08 +0000 (17:09 +0200)] 
[5458a] Checkpoint: working on tests

8 years ago[master] Added ChangeLog entry 1388 for #5567
Thomas Markwalder [Mon, 23 Apr 2018 14:08:27 +0000 (10:08 -0400)] 
[master] Added ChangeLog entry 1388 for #5567

8 years ago[master] Add backward compatible support for --with-dhcp-<mysql/pgsql>
Thomas Markwalder [Mon, 23 Apr 2018 14:06:38 +0000 (10:06 -0400)] 
[master] Add backward compatible support for --with-dhcp-<mysql/pgsql>

    Merges in branch 'trac5567'

8 years ago[master] Added ChangeLog entry 1387 for #5115.
Thomas Markwalder [Mon, 23 Apr 2018 13:41:52 +0000 (09:41 -0400)] 
[master] Added ChangeLog entry 1387 for #5115.

8 years ago[master] Remove unecessary -r command line constraints from perfdhcp
Thomas Markwalder [Mon, 23 Apr 2018 13:39:20 +0000 (09:39 -0400)] 
[master] Remove unecessary -r command line constraints from perfdhcp

    Merges in branch 'trac5115'

8 years ago[5567] --with-pgsql,--with-mysql are now more robust
Tomek Mrugalski [Mon, 23 Apr 2018 10:22:07 +0000 (11:22 +0100)] 
[5567] --with-pgsql,--with-mysql are now more robust

8 years ago[5458a] Code done, tests to do
Francis Dupont [Thu, 19 Apr 2018 23:09:31 +0000 (01:09 +0200)] 
[5458a] Code done, tests to do

8 years ago[master] Removed unused parameters (warnings)
Francis Dupont [Wed, 18 Apr 2018 21:12:27 +0000 (23:12 +0200)] 
[master] Removed unused parameters (warnings)

8 years ago[5591] Fixed all spurious captures by lambdas reported by last Xcode
Francis Dupont [Wed, 18 Apr 2018 17:43:44 +0000 (19:43 +0200)] 
[5591] Fixed all spurious captures by lambdas reported by last Xcode

8 years ago[master] Removed unused defs trac5591_base
Francis Dupont [Wed, 18 Apr 2018 16:12:19 +0000 (18:12 +0200)] 
[master] Removed unused defs

8 years ago[5458a] Checkpoint (dhcp6 to finish - lib to do)
Francis Dupont [Thu, 12 Apr 2018 14:07:47 +0000 (16:07 +0200)] 
[5458a] Checkpoint (dhcp6 to finish - lib to do)

8 years ago[5585] v6 Memfile support complete
Thomas Markwalder [Thu, 12 Apr 2018 13:57:44 +0000 (09:57 -0400)] 
[5585] v6 Memfile support complete

src/lib/dhcpsrv/memfile_lease_mgr.*
    Added:
    - MemfileLeaseStatsQuery6(Lease6Storage& storage6, const SubnetID& subnet_id)
    - MemfileLeaseStatsQuery6(Lease6Storage& storage6, const SubnetID& first_subnet_id,
                            const SubnetID& last_subnet_id)
    - Memfile_LeaseMgr::startSubnetLeaseStatsQuery6()
    - Memfile_LeaseMgr::startSubnetRangeLeaseStatsQuery6()

    MemfileLeaseStatsQuery6()::start() - modified to set lower/upper bounds based
    on select mode

src/lib/dhcpsrv/tests/generic_lease_mgr_unittest.*
    GenericLeaseMgrTest::testLeaseStatsQuery6() - new test to check v6 variants

src/lib/dhcpsrv/tests/memfile_lease_mgr_unittest.cc
    TEST_F(MemfileLeaseMgrTest, leaseStatsQuery6)

8 years ago[5585] v4 Memfile support complete
Thomas Markwalder [Thu, 12 Apr 2018 11:35:47 +0000 (07:35 -0400)] 
[5585] v4 Memfile support complete

Changed subnetID parms to const refs

src/lib/dhcpsrv/memfile_lease_mgr.*
    Added constructors:
    - MemfileLeaseStatsQuery(const SubnetID& subnet_id)
    - MemfileLeaseStatsQuery(const SubnetID& first_subnet_id,
                           const SubnetID& last_subnet_id)

    - MemfileLeaseStatsQuery4(Lease4Storage& storage4, const SubnetID& subnet_id)
    - MemfileLeaseStatsQuery4(Lease4Storage& storage4, const SubnetID& first_subnet_id,
                            const SubnetID& last_subnet_id)

    MemfileLeaseStatsQuery4::start() - altered to set lower/upper iterators
    based on select mode

    Memfile_LeaseMgr::startSubnetLeaseStatsQuery4(const SubnetID& subnet_id)
    Memfile_LeaseMgr::startSubnetRangeLeaseStatsQuery4(const SubnetID& first_subnet_id,
                                                   const SubnetID& last_subnet_id)

src/lib/dhcpsrv/tests/generic_lease_mgr_unittest.cc
    GenericLeaseMgrTest::testLeaseStatsQuery4() - expanded to cover bad values

8 years ago[master] Updated git hash ha_checkpoint3
Francis Dupont [Thu, 12 Apr 2018 10:32:51 +0000 (12:32 +0200)] 
[master] Updated git hash

8 years ago[master] Finishing merge of trac5495 (comment/user-context for d2 and ca)
Francis Dupont [Thu, 12 Apr 2018 10:31:27 +0000 (12:31 +0200)] 
[master] Finishing merge of trac5495 (comment/user-context for d2 and ca)

8 years ago[5458a] Reported dhcp6 srv configured patch from Radius
Francis Dupont [Thu, 12 Apr 2018 10:23:34 +0000 (12:23 +0200)] 
[5458a] Reported dhcp6 srv configured patch from Radius

8 years ago[master] Fixed dependency on libkea-eval in lfc and lease_cmds. trac5458a_base
Marcin Siodelski [Thu, 12 Apr 2018 10:15:29 +0000 (12:15 +0200)] 
[master] Fixed dependency on libkea-eval in lfc and lease_cmds.

8 years ago[master] Removed const for an iterator used in erase
Francis Dupont [Thu, 12 Apr 2018 09:14:01 +0000 (11:14 +0200)] 
[master] Removed const for an iterator used in erase

8 years ago[master] ChangeLog, docs updated after 5543 merge.
Tomek Mrugalski [Wed, 11 Apr 2018 21:12:00 +0000 (23:12 +0200)] 
[master] ChangeLog, docs updated after 5543 merge.

8 years ago[master] Merge branch 'trac5543' (leaseX-wipe for all subnets)
Tomek Mrugalski [Wed, 11 Apr 2018 21:05:46 +0000 (23:05 +0200)] 
[master] Merge branch 'trac5543' (leaseX-wipe for all subnets)

8 years ago[5543] Changes after review
Tomek Mrugalski [Wed, 11 Apr 2018 21:04:15 +0000 (23:04 +0200)] 
[5543] Changes after review

8 years ago[master] Final changes from 5374 merge
Francis Dupont [Wed, 11 Apr 2018 19:20:08 +0000 (21:20 +0200)] 
[master] Final changes from 5374 merge

8 years ago[5585] Initial LeaseQueryStats, LeaseMgr, and MemfileLeaseMgr extensions
Thomas Markwalder [Wed, 11 Apr 2018 18:56:44 +0000 (14:56 -0400)] 
[5585] Initial LeaseQueryStats, LeaseMgr, and MemfileLeaseMgr extensions

    MemfileLeaseMgr unit tests fail for subnet and range query variants, not yet
    implemented

src/lib/dhcpsrv/lease_mgr.*
    LeaseStatsQuery
    - Added SelectMode enum typedef
    - Added instance members: first_subnet_id_, last_subnet_id_, and select_mode_
    - Added constructors for single subnet and subnet range queries

    LeaseMgr
    Added virtual start query variants:
    - startSubnetLeaseStatsQuery4(SubnetID subnet_id);
    - startSubnetRangeLeaseStatsQuery4(SubnetID first, SubnetID last);
    - startSubnetLeaseStatsQuery6(SubnetID subnet_id);
    - startSubnetRangeLeaseStatsQuery6(SubnetID first, SubnetID last);

src/lib/dhcpsrv/tests/generic_lease_mgr_unittest.*
    GenericLeaseMgrTest
    - Added checkQueryAgainstRowSet()
    - Added testLeaseStatsQuery4()

src/lib/dhcpsrv/tests/lease_mgr_unittest.cc
    Added LeaseStatsQuery ctor tests
    - TEST (LeaseStatsQueryTest, defaultCtor)
    - TEST (LeaseStatsQueryTest, singleSubnetCtor)
    - TEST (LeaseStatsQueryTest, subnetRangeCtor)

src/lib/dhcpsrv/tests/memfile_lease_mgr_unittest.cc
    TEST_F(MemfileLeaseMgrTest, leaseStatsQuery4) {

8 years ago[master] Fixed merge error
Francis Dupont [Wed, 11 Apr 2018 15:40:52 +0000 (17:40 +0200)] 
[master] Fixed merge error

8 years ago[master] regen flex/bison
Francis Dupont [Wed, 11 Apr 2018 15:35:03 +0000 (15:35 +0000)] 
[master] regen flex/bison

8 years ago[master] Fixed merge error
Francis Dupont [Wed, 11 Apr 2018 15:34:08 +0000 (17:34 +0200)] 
[master] Fixed merge error

8 years ago[master] Fixed merge errors
Francis Dupont [Wed, 11 Apr 2018 15:18:59 +0000 (17:18 +0200)] 
[master] Fixed merge errors

8 years ago[master] Updated git hash (note merge is not finished)
Francis Dupont [Wed, 11 Apr 2018 15:06:37 +0000 (17:06 +0200)] 
[master] Updated git hash (note merge is not finished)

8 years ago[master] Finishing merge of trac5374 (new classification)
Francis Dupont [Wed, 11 Apr 2018 15:05:15 +0000 (17:05 +0200)] 
[master] Finishing merge of trac5374 (new classification)

8 years ago[master] Fixed merge error
Francis Dupont [Wed, 11 Apr 2018 15:04:16 +0000 (17:04 +0200)] 
[master] Fixed merge error

8 years ago[master] Fixed merge error
Francis Dupont [Wed, 11 Apr 2018 14:54:26 +0000 (16:54 +0200)] 
[master] Fixed merge error

8 years ago[master] regen flex/bison
Francis Dupont [Wed, 11 Apr 2018 14:44:30 +0000 (14:44 +0000)] 
[master] regen flex/bison

8 years ago[master] Merging trac5374 (new classification) - conflicts resolved, regen needed
Francis Dupont [Wed, 11 Apr 2018 14:42:23 +0000 (16:42 +0200)] 
[master] Merging trac5374 (new classification) - conflicts resolved, regen needed

8 years ago[5495] Added comments in get config tests (4, 6, d2, ca)
Francis Dupont [Wed, 11 Apr 2018 12:57:52 +0000 (14:57 +0200)] 
[5495] Added comments in get config tests (4, 6, d2, ca)

8 years ago[5543] docs updated.
Tomek Mrugalski [Tue, 10 Apr 2018 21:56:09 +0000 (23:56 +0200)] 
[5543] docs updated.

8 years ago[5543] leaseX-wipe now allows deleting leases from all subnets.
Tomek Mrugalski [Tue, 10 Apr 2018 21:50:05 +0000 (23:50 +0200)] 
[5543] leaseX-wipe now allows deleting leases from all subnets.

8 years ago[5495] Improved the (i.e)
Francis Dupont [Tue, 10 Apr 2018 16:11:17 +0000 (18:11 +0200)] 
[5495] Improved the (i.e)

8 years ago[5374] Addressed comments
Francis Dupont [Tue, 10 Apr 2018 14:42:38 +0000 (16:42 +0200)] 
[5374] Addressed comments

8 years ago[master] Merged trac5525 (Radius config)
Francis Dupont [Tue, 10 Apr 2018 13:29:21 +0000 (15:29 +0200)] 
[master] Merged trac5525 (Radius config)

8 years ago[master] Added ChangeLog entry 1383 for #5556.
Thomas Markwalder [Tue, 10 Apr 2018 11:43:22 +0000 (07:43 -0400)] 
[master] Added ChangeLog entry 1383 for #5556.

8 years ago[master] Database reconnect now supported for MySQL lease/host back ends
Thomas Markwalder [Tue, 10 Apr 2018 11:40:09 +0000 (07:40 -0400)] 
[master] Database reconnect now supported for MySQL lease/host back ends

    Merges branch 'trac5556a'

8 years ago[5567] Re-add support for --with-dhcp-mysql and --with-dhcp-pgsql
Thomas Markwalder [Tue, 10 Apr 2018 11:23:18 +0000 (07:23 -0400)] 
[5567] Re-add support for --with-dhcp-mysql and --with-dhcp-pgsql

configure.ac
  Re-added support --with-dhcp-mysql and --with-dhcp-pgsql but emit a
  deprecation warning message encouraging their replacement with
  --with-mysql and --with-pgsql.

8 years ago[5556a] Commentary changes
Thomas Markwalder [Mon, 9 Apr 2018 18:56:22 +0000 (14:56 -0400)] 
[5556a] Commentary changes

8 years ago[5556a] Addressed review comments
Thomas Markwalder [Mon, 9 Apr 2018 18:42:42 +0000 (14:42 -0400)] 
[5556a] Addressed review comments

src/lib/dhcpsrv/tests/generic_lease_mgr_unittest.cc
    LeaseMgrDbLostCallbackTest::testNoCallbackOnOpenFailure() {
    - removed before hand checks for socket descriptor, grab
    the most recently opend descriptor after connecting to the db
    and assume its the SQL client's

    - test return value of close() rather then errno

src/lib/dhcpsrv/tests/generic_lease_mgr_unittest.h
    LeaseMgrDbLostCallbackTest
    - constructor and destructor clear
    DatabaseConnection::db_lost_callback

src/lib/dhcpsrv/tests/host_mgr_unittest.cc
    HostMgrDbLostCallbackTest
    - Setup and Teardown methods clear DatabaseConnection::db_lost_callback

    HostMgrDbLostCallbackTest::testDbLostCallback()
    - removed before hand checks for socket descriptor, grab
    the most recently opend descriptor after connecting to the db
    and assume its the SQL client's

    - test return value of close() rather then errno

src/lib/dhcpsrv/tests/test_utils.cc
    int findLastSocketFd()
    - iterate over all descriptors rather than stopping at first invalid

8 years ago[5374] Doxygen correction in client_class_def.h.
Marcin Siodelski [Mon, 9 Apr 2018 15:34:26 +0000 (17:34 +0200)] 
[5374] Doxygen correction in client_class_def.h.

8 years ago[5374] Some corrections in the new client classification text of User Guide.
Marcin Siodelski [Mon, 9 Apr 2018 14:50:53 +0000 (16:50 +0200)] 
[5374] Some corrections in the new client classification text of User Guide.

8 years ago[5556a] Postgresql -> PostgreSQL
Francis Dupont [Mon, 9 Apr 2018 13:38:11 +0000 (15:38 +0200)] 
[5556a] Postgresql -> PostgreSQL

8 years ago[5556a] Updated guide copyright
Francis Dupont [Mon, 9 Apr 2018 13:35:52 +0000 (15:35 +0200)] 
[5556a] Updated guide copyright

8 years ago[master] Finished merge of trac5491 (duplicate comment tests)
Francis Dupont [Mon, 9 Apr 2018 13:34:30 +0000 (15:34 +0200)] 
[master] Finished merge of trac5491 (duplicate comment tests)

8 years ago[master] Finishing merge of trac5404 (port relay)
Francis Dupont [Mon, 9 Apr 2018 12:32:48 +0000 (14:32 +0200)] 
[master] Finishing merge of trac5404 (port relay)

8 years ago[master] Finished merge of trac5480 (user context utils)
Francis Dupont [Mon, 9 Apr 2018 12:20:10 +0000 (14:20 +0200)] 
[master] Finished merge of trac5480 (user context utils)

8 years ago[master] Merged trac5480 (user context utils)
Francis Dupont [Mon, 9 Apr 2018 12:10:42 +0000 (14:10 +0200)] 
[master] Merged trac5480 (user context utils)

8 years ago[master] ChangeLog renumbered
Wlodek Wencel [Mon, 9 Apr 2018 10:47:25 +0000 (12:47 +0200)] 
[master] ChangeLog renumbered

8 years ago[5374] Finished to address comments
Francis Dupont [Sat, 7 Apr 2018 22:37:01 +0000 (00:37 +0200)] 
[5374] Finished to address comments

8 years ago[5374] Checkpoint: HA tests
Francis Dupont [Sat, 7 Apr 2018 16:32:01 +0000 (18:32 +0200)] 
[5374] Checkpoint: HA tests

8 years ago[trac5374] regen bison
Francis Dupont [Sat, 7 Apr 2018 13:17:18 +0000 (13:17 +0000)] 
[trac5374] regen bison

8 years ago[5374] Checkpoint for regen before tests
Francis Dupont [Sat, 7 Apr 2018 13:15:41 +0000 (15:15 +0200)] 
[5374] Checkpoint for regen before tests

8 years ago[5556a] MySQL lease and host backends now support configurable auto-reconnect
Thomas Markwalder [Fri, 6 Apr 2018 19:16:24 +0000 (15:16 -0400)] 
[5556a] MySQL lease and host backends now support configurable auto-reconnect

    src/lib/dhcpsrv/mysql_connection.h
        MySqlConnection::checkError<>() - modified to invoke
        db lost callback

    src/lib/dhcpsrv/dhcpsrv_messages.mes
        Updated log messages

    src/lib/dhcpsrv/mysql_lease_mgr.cc
        MySqlLeaseMgr::getVersion() - updated to use checkError()

    src/lib/dhcpsrv/pgsql_connection.*
        PgSqlResult::PgSqlResult(PGresult *result) - now supports
        construction with null PGresult. This is to accomodate rare
        cases when PQ* statements can return NULL.

    src/lib/dhcpsrv/tests/generic_lease_mgr_unittest.*
        class LeaseMgrDbLostCallbackTest - new test fixture for
        testing LeaseMgr DBLostCallback behavior

    src/lib/dhcpsrv/tests/host_mgr_unittest.cc
        class HostMgrDbLostCallbackTest
        class MySQLHostMgrDbLostCallbackTest
        class PostgreSQLHostMgrDbLostCallbackTest
        - new test fixtures for testing HostMgr DBLostCallback behavior

    src/lib/dhcpsrv/tests/mysql_lease_mgr_unittest.cc
        class MySQLLeaseMgrDbLostCallbackTest - new test fixture for
        testing MySQL LeaseMgr DBLostCallback behavior

    src/lib/dhcpsrv/tests/pgsql_lease_mgr_unittest.cc
        class PgSqlLeaseMgrDbLostCallbackTest - new test fixture for
        testing Postgresql LeaseMgr DBLostCallback behavior

    src/lib/dhcpsrv/tests/test_utils.*
        int findLastSocketFd() - new function used for finding what
        should be the fd of the SQL client socket

    doc/guide/dhcp4-srv.xml
    doc/guide/dhcp6-srv.xml
        Updated lease and host database parameter sections

8 years ago[master] Fixed broken Postgresql lease6 queries
Thomas Markwalder [Fri, 6 Apr 2018 18:41:28 +0000 (14:41 -0400)] 
[master] Fixed broken Postgresql lease6 queries

    Two Postgresql lease manager v6 queries were missing hardware address
    columns recently added, causing unit tests to fall down.

8 years ago[trac5374] regen flex/bison
Francis Dupont [Fri, 6 Apr 2018 14:23:38 +0000 (14:23 +0000)] 
[trac5374] regen flex/bison

8 years ago[5374] Addressed non test comments - checkpoint before regen
Francis Dupont [Fri, 6 Apr 2018 14:22:09 +0000 (16:22 +0200)] 
[5374] Addressed non test comments - checkpoint before regen

8 years ago[master] Added ChangeLog entry for #5580.
Marcin Siodelski [Fri, 6 Apr 2018 12:11:07 +0000 (14:11 +0200)] 
[master] Added ChangeLog entry for #5580.

8 years ago[master] Merge branch 'trac5580'
Marcin Siodelski [Fri, 6 Apr 2018 11:57:35 +0000 (13:57 +0200)] 
[master] Merge branch 'trac5580'

8 years ago[master] Fixed broken unit test in lease_cmds after the previous merge.
Marcin Siodelski [Fri, 6 Apr 2018 11:56:39 +0000 (13:56 +0200)] 
[master] Fixed broken unit test in lease_cmds after the previous merge.

Okayed on jabber.

8 years ago[5374] spelling (in test code)
Francis Dupont [Fri, 6 Apr 2018 08:12:49 +0000 (10:12 +0200)] 
[5374] spelling (in test code)

8 years ago[trac5374] regen flex/bison
Francis Dupont [Thu, 5 Apr 2018 22:18:09 +0000 (22:18 +0000)] 
[trac5374] regen flex/bison

8 years ago[5374] Merge branch 'trac5374' of ssh://git.kea.isc.org/git/kea into trac5374
Francis Dupont [Thu, 5 Apr 2018 22:17:06 +0000 (00:17 +0200)] 
[5374] Merge branch 'trac5374' of ssh://git.kea.isc.org/git/kea into trac5374

8 years ago[trac5374] regen flex/bison
Francis Dupont [Thu, 5 Apr 2018 22:14:34 +0000 (22:14 +0000)] 
[trac5374] regen flex/bison

8 years ago[5374] Checkpoint before regen
Francis Dupont [Thu, 5 Apr 2018 22:12:52 +0000 (00:12 +0200)] 
[5374] Checkpoint before regen

8 years ago[5580] Do not use std::bind in boost async calls for unix sockets.
Marcin Siodelski [Thu, 5 Apr 2018 11:41:34 +0000 (13:41 +0200)] 
[5580] Do not use std::bind in boost async calls for unix sockets.