]> git.ipfire.org Git - thirdparty/kea.git/log
thirdparty/kea.git
9 years ago[3601] Addressed additional review comments
Thomas Markwalder [Wed, 11 Nov 2015 14:59:40 +0000 (09:59 -0500)] 
[3601] Addressed additional review comments

doc/guide/admin.xml
src/lib/dhcpsrv/dhcpsrv_messages.mes
src/lib/dhcpsrv/lease_file_loader.h
    minor clean up, typos

src/lib/dhcpsrv/tests/csv_lease_file4_unittest.cc
src/lib/dhcpsrv/tests/csv_lease_file6_unittest.cc
    removed unnecessary use of scoped_ptr

src/lib/util/csv_file.cc
    CSVRow::trim() - replaced use of std::vector<>::erase with resise

src/lib/util/versioned_csv_file.h
src/lib/util/versioned_csv_file.cc
    VersionedCSVFile::next() - reorganized to use input_schema_state_
    VersionedCSVFile::columnCountError() - new convenience method
    minor cleanups

9 years ago[3601] Addressed review comments, added ability to downgrade
Thomas Markwalder [Tue, 10 Nov 2015 14:20:44 +0000 (09:20 -0500)] 
[3601] Addressed review comments, added ability to downgrade

Several minor cleanup items based on review comments.  Implemented
support for downgrading files from newer schema versions:

doc/guide/admin.xml
    amended text on upgrading memfile to discuss downgrading

src/lib/dhcpsrv/dhcpsrv_messages.mes
src/lib/dhcpsrv/lease_file_loader.h
    revamped log messages to accomodate downgrading

src/lib/dhcpsrv/memfile_lease_mgr.cc
src/lib/dhcpsrv/memfile_lease_mgr.h
    added commentary to MemfileLeaseMgr ctor
    automatic conversion logic accomdates both upgrading and downgrading

src/lib/dhcpsrv/tests/csv_lease_file4_unittest.cc
src/lib/dhcpsrv/tests/csv_lease_file6_unittest.cc
    replaced tooManyHeaderColumns test with downGrade test

src/lib/util/csv_file.h
src/lib/util/csv_file.cc
    added CSVRow::trim()

src/lib/util/tests/csv_file_unittest.cc
    added CSVRow.trim test

src/lib/util/tests/versioned_csv_file_unittest.cc
    added VersionedCSVFileTest.currentSchemaTest test
    replaced tooManyHeaderColumns test with downGrading test
    revamped tests to check  getInputSchemaState() and needsConversion()

src/lib/util/versioned_csv_file.h
    Updated commentary to describe downgrade support

src/lib/util/versioned_csv_file.cc
    enum InputSchemaState
    input_schema_state_
    input_header_count_
    getInputHeaderCount()
    getInputSchemaState()
    needsConversion()

    next(CSVRow& row) - now supports downgrading rows
    validateHeder() -  now throws if called when no schema has been defined,
    and supports downgrading rows

9 years ago[3601] Added discussion of memfile lease file upgrading to admin guide
Thomas Markwalder [Tue, 3 Nov 2015 19:51:21 +0000 (14:51 -0500)] 
[3601] Added discussion of memfile lease file upgrading to admin guide

9 years ago[3601] Added unit tests for automatic LFC upgrade
Thomas Markwalder [Tue, 3 Nov 2015 19:21:02 +0000 (14:21 -0500)] 
[3601] Added unit tests for automatic LFC upgrade

src/lib/dhcpsrv/tests/memfile_lease_mgr_unittest.cc
    Added two new unit tests to verify lease file upgrade
    via automatic LFC invocation:
        TEST_F(MemfileLeaseMgrTest, leaseUpgrade4)
        TEST_F(MemfileLeaseMgrTest, leaseUpgrade6)

9 years ago[3601] Memfile_LeaseMgr now runs LFC automatically if lease files need upgrading
Thomas Markwalder [Tue, 3 Nov 2015 15:53:28 +0000 (10:53 -0500)] 
[3601] Memfile_LeaseMgr now runs LFC automatically if lease files need upgrading

Memfile_LeaseMgr loads the lease files during instantiation. If it detects
that any of the files loaded are out of date, it will invoke LFC directly,
whether or not LFC is enabled.

src/lib/dhcpsrv/dhcpsrv_messages.mes
    added two new log messages:
        DHCPRSV_MEMFILE_UPGRADING_LEASE_FILES
        DHCPSRV_MEMFILE_NEEDS_UPGRADING

src/lib/dhcpsrv/lease_file_loader.h
    LeaseFileLoader::load() - emits DHCPSRV_MEMFILE_NEEDS_UPGRADING log
    when an out of date file is detected

src/lib/dhcpsrv/memfile_lease_mgr.cc
    LFCSetup::setup() - added run_once_now parameter, which causes the
    method to invoke the LFC callback immediately, regardless of the value
    of LFC interval.
    Memfile_LeaseMgr::Memfile_LeaseMgr() - added logic to track if
    files loaded need upgrading and pass that into lfcSetup()

    Memfile_LeaseMgr::loadLeasesFromFiles() - change to return a boolean
    true if any of the files loaded need upgrading.

    Memfile_LeaseMgr::lfcSetup() - added upgrade_needed parameter, which
    is passed through to LFCSetup::setup() as "run_once_now"

9 years ago[3601] Added methods to VersionedCSVFile for tracking when updating is needed
Thomas Markwalder [Tue, 3 Nov 2015 15:03:26 +0000 (10:03 -0500)] 
[3601] Added methods to VersionedCSVFile for tracking when updating is needed

src/lib/util/csv_file.h
    Made recreate() virtual

src/lib/util/versioned_csv_file.h
src/lib/util/versioned_csv_file.cc
    Added several methods to VersionedCSVFile:

    getValidColumnCount() - returns number of valid columns in header

    recreate() - wraps base class method, ensuring valid column
    count gets set to number of defined columns for new files

    needsUpgrading() - returns bool true if file schema is out of date

    getInputSchemaVersion() - returns schema version found in file

    getSchemaVersion() - returns current schema version

    getVersionedColumn() - returns the column definition for a given index

src/lib/util/tests/versioned_csv_file_unittest.cc
    Added checks for new methods to existing tests

9 years ago[3601] CSVLeaseFile4 and CSVLeaseFile6 now derive from VersionedCSVFile
Thomas Markwalder [Mon, 2 Nov 2015 16:14:56 +0000 (11:14 -0500)] 
[3601] CSVLeaseFile4 and CSVLeaseFile6 now derive from  VersionedCSVFile

src/lib/dhcpsrv/csv_lease_file4.h
src/lib/dhcpsrv/csv_lease_file4.cc
    - CSVLeaseFile4 now derives from VersionedCSVFile
    - initializes schema metadata not just column names
    - uses VersionedCSVFile methods rather than CSVFile methods

src/lib/dhcpsrv/csv_lease_file6.h
src/lib/dhcpsrv/csv_lease_file6.cc
    - CSVLeaseFile6 now derives from VersionedCSVFile
    - initializes schema metadata not just column names
    - uses VersionedCSVFile methods rather than CSVFile methods

src/lib/dhcpsrv/tests/csv_lease_file4_unittest.cc
    - Added new unit tests:
    TEST_F(CSVLeaseFile4Test, mixedSchemaload)
    TEST_F(CSVLeaseFile4Test, tooFewHeaderColumns)
    TEST_F(CSVLeaseFile4Test, invalidHeaderColumn)
    TEST_F(CSVLeaseFile4Test, tooManyHeaderColumns)

src/lib/dhcpsrv/tests/csv_lease_file6_unittest.cc
    - Added new unit tests:
    TEST_F(CSVLeaseFile6Test, mixedSchemaLoad)
    TEST_F(CSVLeaseFile6Test, tooFewHeaderColumns)
    TEST_F(CSVLeaseFile6Test, invalidHeaderColumn)
    TEST_F(CSVLeaseFile6Test, tooManyHeaderColumns)

9 years ago[3601] Added isc::util::VersionedCSVFile
Thomas Markwalder [Mon, 2 Nov 2015 15:49:40 +0000 (10:49 -0500)] 
[3601] Added isc::util::VersionedCSVFile

src/lib/util/versioned_csv_file.h
src/lib/util/versioned_csv_file.cc
    New files which implement VersionedCSVFile, CSV file which can
    support mulitple schema versions

src/lib/util/tests/versioned_csv_file_unittest.h
src/lib/util/tests/versioned_csv_file_unittest.cc
    new files for Unit tests for VersionedCSVFile

src/lib/util/Makefile.am
    added new files

src/lib/util/csv_file.cc
    includes read error message if header fails to validate

src/lib/util/csv_file.h
    removed @todo for 3626, no longer applicable

src/lib/util/tests/Makefile.am
    added versioned_csv_file_unittest.cc

9 years ago[master] Changed string.h for cstring (cf #4089)
Francis Dupont [Wed, 28 Oct 2015 16:10:01 +0000 (17:10 +0100)] 
[master] Changed string.h for cstring (cf #4089)

9 years ago[master] Added ChangeLog entry 1040 for #3780
Thomas Markwalder [Tue, 27 Oct 2015 19:20:56 +0000 (15:20 -0400)] 
[master] Added ChangeLog entry 1040 for #3780

9 years ago[master] Servers now exit if MySQL or PostgreSQL connectivity is lost
Thomas Markwalder [Tue, 27 Oct 2015 19:04:41 +0000 (15:04 -0400)] 
[master] Servers now exit if MySQL or PostgreSQL connectivity is lost

    Merge branch 'trac3780'

9 years ago[3780] Addressed review comments
Thomas Markwalder [Tue, 27 Oct 2015 19:02:36 +0000 (15:02 -0400)] 
[3780] Addressed review comments

    Fixed misspelling in log message.

9 years ago[master] Added ChangeLog entry for #3979.
Marcin Siodelski [Tue, 27 Oct 2015 15:04:55 +0000 (16:04 +0100)] 
[master] Added ChangeLog entry for #3979.

9 years ago[master] Merge branch 'trac3979'
Marcin Siodelski [Tue, 27 Oct 2015 15:02:30 +0000 (16:02 +0100)] 
[master] Merge branch 'trac3979'

9 years ago[3979] Corrected a typos in the user guide.
Marcin Siodelski [Tue, 27 Oct 2015 14:46:40 +0000 (15:46 +0100)] 
[3979] Corrected a typos in the user guide.

9 years ago[3979] Corrected order of parameters in the lease-expiration.json.
Marcin Siodelski [Tue, 27 Oct 2015 14:37:40 +0000 (15:37 +0100)] 
[3979] Corrected order of parameters in the lease-expiration.json.

This is a result of the review. This change was suggested so as
the order of lease expiration specific parameters follows the
order in which they are described.

9 years ago[3979] Fixed a broken <para> oops
Thomas Markwalder [Tue, 27 Oct 2015 14:15:54 +0000 (10:15 -0400)] 
[3979] Fixed a broken <para> oops

9 years ago[3979] Did some clean up and rewording
Thomas Markwalder [Tue, 27 Oct 2015 14:03:06 +0000 (10:03 -0400)] 
[3979] Did some clean up and rewording

9 years ago[master] Added ChangeLog entry for #3977. fdfb_base
Marcin Siodelski [Tue, 27 Oct 2015 10:58:33 +0000 (11:58 +0100)] 
[master] Added ChangeLog entry for #3977.

9 years ago[master] Merge branch 'trac3977'
Marcin Siodelski [Tue, 27 Oct 2015 10:19:35 +0000 (11:19 +0100)] 
[master] Merge branch 'trac3977'

9 years ago[trac3977] update comment to be v4 instead of v6
Shawn Routhier [Tue, 27 Oct 2015 04:25:15 +0000 (21:25 -0700)] 
[trac3977] update comment to be v4 instead of v6

9 years ago[3977] Addressed review comments.
Marcin Siodelski [Mon, 26 Oct 2015 19:50:30 +0000 (20:50 +0100)] 
[3977] Addressed review comments.

9 years ago[3979] Updated user guide for lease expiration.
Marcin Siodelski [Mon, 26 Oct 2015 15:15:55 +0000 (16:15 +0100)] 
[3979] Updated user guide for lease expiration.

9 years ago[3979] Removed lease expiration from the server limitations.
Marcin Siodelski [Mon, 26 Oct 2015 13:08:53 +0000 (14:08 +0100)] 
[3979] Removed lease expiration from the server limitations.

9 years ago[3979] Removed notes in the statistics about lease expiration not impl.
Marcin Siodelski [Mon, 26 Oct 2015 13:06:14 +0000 (14:06 +0100)] 
[3979] Removed notes in the statistics about lease expiration not impl.

9 years ago[3979] Added examples demonstrating processing expired leases.
Marcin Siodelski [Mon, 26 Oct 2015 12:58:13 +0000 (13:58 +0100)] 
[3979] Added examples demonstrating processing expired leases.

9 years ago[master] Updated git hash
Francis Dupont [Mon, 26 Oct 2015 12:56:51 +0000 (13:56 +0100)] 
[master] Updated git hash

9 years ago[master] Finished merge of trac3978 (new leases-reclaim command)
Francis Dupont [Mon, 26 Oct 2015 12:55:36 +0000 (13:55 +0100)] 
[master] Finished merge of trac3978 (new leases-reclaim command)

9 years ago[master] Finished merge of trac3978 (new leases-reclaim command)
Francis Dupont [Mon, 26 Oct 2015 12:52:43 +0000 (13:52 +0100)] 
[master] Finished merge of trac3978 (new leases-reclaim command)

9 years ago[master] Merged trac3978 (new leases-reclaim command)
Francis Dupont [Mon, 26 Oct 2015 12:33:56 +0000 (13:33 +0100)] 
[master] Merged trac3978 (new leases-reclaim command)

9 years ago[3979] Added description of leases-reclaim command to User Guide.
Marcin Siodelski [Mon, 26 Oct 2015 11:59:35 +0000 (12:59 +0100)] 
[3979] Added description of leases-reclaim command to User Guide.

9 years ago[trac3977] Tidy up some typos
Shawn Routhier [Mon, 26 Oct 2015 05:25:45 +0000 (22:25 -0700)] 
[trac3977] Tidy up some typos

9 years ago[3780] MySQL and Postgres lease managers now exit on fatal error detection
Thomas Markwalder [Fri, 23 Oct 2015 20:41:27 +0000 (16:41 -0400)] 
[3780] MySQL and Postgres lease managers now exit on fatal error detection

src/lib/dhcpsrv/dhcpsrv_messages.mes
    added messages DHCPSRV_MYSQL_FATAL_ERROR, DHCPSRV_PGSQL_FATAL_ERROR

src/lib/dhcpsrv/mysql_lease_mgr.cc
    added MySQL client error code include

    MySqlLeaseMgr::checkError() - method is no longer inlined in
    the header.  Expanded to detect unrecoverable errors, log
    them and call exit().

src/lib/dhcpsrv/mysql_lease_mgr.h
    Removed inline implemenation of MySqlLeaseMgr::checkError(),
    and expanded commentary

src/lib/dhcpsrv/pgsql_lease_mgr.cc
    PgSqlLeaseMgr::addLeaseCommon() - now uses checkStatementError()

    PgSqlLeaseMgr::checkStatementError() - Expanded to detect
    unrecoverable errors, log them and call exit().

src/lib/dhcpsrv/pgsql_lease_mgr.h
    Expanded commentary for PgSqlLeaseMgr::checkStatementError()

9 years ago[3979] Added new chapter about lease reclamation to the User Guide.
Marcin Siodelski [Fri, 23 Oct 2015 15:06:23 +0000 (17:06 +0200)] 
[3979] Added new chapter about lease reclamation to the User Guide.

9 years ago[3978] Addressed comments
Francis Dupont [Fri, 23 Oct 2015 02:23:45 +0000 (04:23 +0200)] 
[3978] Addressed comments

9 years ago[master] Merge branch 'master' of ssh://git.kea.isc.org/git/kea
Francis Dupont [Wed, 21 Oct 2015 19:22:25 +0000 (21:22 +0200)] 
[master] Merge branch 'master' of ssh://git.kea.isc.org/git/kea

9 years ago[master] spelling
Francis Dupont [Wed, 21 Oct 2015 19:21:55 +0000 (21:21 +0200)] 
[master] spelling

9 years ago[master] Added ChangeLog entry 1036 for trac #3969.
Thomas Markwalder [Wed, 21 Oct 2015 18:58:02 +0000 (14:58 -0400)] 
[master] Added ChangeLog entry 1036 for trac #3969.

9 years ago[master] Implemented schema upgrade for Postgres schema 2.0
Thomas Markwalder [Wed, 21 Oct 2015 18:24:19 +0000 (14:24 -0400)] 
[master] Implemented schema upgrade for Postgres schema 2.0

    Merged in branch 'trac3969'

9 years ago[3969] Addressed review comments
Thomas Markwalder [Wed, 21 Oct 2015 15:57:47 +0000 (11:57 -0400)] 
[3969] Addressed review comments

9 years ago[master] Replaced EXPECT_EQ by EXPECT_TRUE == on HWAddr
Francis Dupont [Wed, 21 Oct 2015 15:06:19 +0000 (17:06 +0200)] 
[master] Replaced EXPECT_EQ by EXPECT_TRUE == on HWAddr

9 years ago[master] Updated git hash
Francis Dupont [Wed, 21 Oct 2015 13:17:21 +0000 (15:17 +0200)] 
[master] Updated git hash

9 years ago[master] Finished merge of trac4071 (internal record format in option doc)
Francis Dupont [Wed, 21 Oct 2015 13:15:17 +0000 (15:15 +0200)] 
[master] Finished merge of trac4071 (internal record format in option doc)

9 years ago[master] Merged trac4071 (internal record format in option doc)
Francis Dupont [Wed, 21 Oct 2015 13:13:11 +0000 (15:13 +0200)] 
[master] Merged trac4071 (internal record format in option doc)

9 years ago[master] Merged trac4059 (layer 2 DHCPv6 relays)
Francis Dupont [Wed, 21 Oct 2015 13:07:03 +0000 (15:07 +0200)] 
[master] Merged trac4059 (layer 2 DHCPv6 relays)

9 years ago[master] Updated git hash
Francis Dupont [Wed, 21 Oct 2015 13:05:11 +0000 (15:05 +0200)] 
[master] Updated git hash

9 years ago[master] Finished merge of trac4058 (DHCPv4 Subnet Selection option)
Francis Dupont [Wed, 21 Oct 2015 12:55:17 +0000 (14:55 +0200)] 
[master] Finished merge of trac4058 (DHCPv4 Subnet Selection option)

9 years ago[3977] Added system_messages program to .gitignore.
Marcin Siodelski [Wed, 21 Oct 2015 12:15:24 +0000 (14:15 +0200)] 
[3977] Added system_messages program to .gitignore.

9 years ago[3977] Removed unused code generating NCRs.
Marcin Siodelski [Wed, 21 Oct 2015 11:21:32 +0000 (13:21 +0200)] 
[3977] Removed unused code generating NCRs.

9 years ago[3977] Do not generate NCRs for prefix delegation.
Marcin Siodelski [Wed, 21 Oct 2015 10:47:04 +0000 (12:47 +0200)] 
[3977] Do not generate NCRs for prefix delegation.

9 years ago[3977] Improved logging in methods queueing NCRs and reclaiming leases.
Marcin Siodelski [Wed, 21 Oct 2015 10:25:04 +0000 (12:25 +0200)] 
[3977] Improved logging in methods queueing NCRs and reclaiming leases.

9 years ago[3977] Added variants of PktX::makeLabel excluding transaction id.
Marcin Siodelski [Wed, 21 Oct 2015 09:20:15 +0000 (11:20 +0200)] 
[3977] Added variants of PktX::makeLabel excluding transaction id.

9 years ago[3969] Added upgrade support from Postgres schema 1.0 to 2.0
Thomas Markwalder [Tue, 20 Oct 2015 12:36:14 +0000 (08:36 -0400)] 
[3969] Added upgrade support from Postgres schema 1.0 to 2.0

Upgrade adds state column to both lease tables, the state table,
and the lease dump functions.

src/bin/admin/scripts/pgsql/upgrade_1.0_to_2.0.sh -
    new script for upgrading postgres schema

src/bin/admin/tests/dhcpdb_create_1.0.pgsql
    new sql script for creating 1.0 schema db

configure.ac
    added entry for new upgrade script

src/bin/admin/kea-admin.in
    pgsql_upgrade() - modified to set Postgres password env variable
    and pass in remaining args as psql expects them

src/bin/admin/scripts/pgsql/Makefile.am
    added entry for new upgrade script

src/bin/admin/tests/Makefile.am
    added entry for 1.0 schema script

src/bin/admin/tests/pgsql_tests.sh.in
    pgsql_upgrade_test()  - revamped now that Postgres actually
    has its first upgrade script.

9 years ago[3977] Name change requests are now generated when lease is reused.
Marcin Siodelski [Mon, 19 Oct 2015 13:30:01 +0000 (15:30 +0200)] 
[3977] Name change requests are now generated when lease is reused.

This change triggered a lot of code refactoring for generating the
NameChangeRequests. Long story short is that the functions responsible
for generating NCRs from the lease information have been moved to
the libdhcpsrv where they better fit and where they may be used
by both allocation engine and the servers.

9 years ago[master] ChangeLog for trac3443
Stephen Morris [Tue, 20 Oct 2015 10:12:43 +0000 (11:12 +0100)] 
[master] ChangeLog for trac3443

9 years ago[master] Merge branch 'trac3443'
Stephen Morris [Tue, 20 Oct 2015 09:54:43 +0000 (10:54 +0100)] 
[master] Merge branch 'trac3443'

9 years ago[4071] Tried inline description of standard option records
Francis Dupont [Mon, 19 Oct 2015 17:14:33 +0000 (19:14 +0200)] 
[4071] Tried inline description of standard option records

9 years ago[3443] Minor changes after review.
Stephen Morris [Mon, 19 Oct 2015 17:05:01 +0000 (18:05 +0100)] 
[3443] Minor changes after review.

9 years ago[master] Fixing one more params binding issue in PostgreSQL. trac4071_base
Marcin Siodelski [Mon, 19 Oct 2015 14:32:07 +0000 (07:32 -0700)] 
[master] Fixing one more params binding issue in PostgreSQL.

This change was omitted during the previous commit.

9 years ago[master] Do not use temporary variables to bind to PostgreSQL queries.
Marcin Siodelski [Mon, 19 Oct 2015 14:17:10 +0000 (07:17 -0700)] 
[master] Do not use temporary variables to bind to PostgreSQL queries.

This change has been reviewed and approved on jabber.

9 years ago[3978] Rearranged DHCPv4 unit tests
Francis Dupont [Sat, 17 Oct 2015 09:22:24 +0000 (11:22 +0200)] 
[3978] Rearranged DHCPv4 unit tests

9 years ago[3978] Cleaned up code
Francis Dupont [Sat, 17 Oct 2015 09:19:55 +0000 (11:19 +0200)] 
[3978] Cleaned up code

9 years ago[3978] new command handler takes no argument
Francis Dupont [Fri, 16 Oct 2015 23:10:25 +0000 (01:10 +0200)] 
[3978] new command handler takes no argument

9 years ago[3978] Added unit tests
Francis Dupont [Fri, 16 Oct 2015 21:50:39 +0000 (23:50 +0200)] 
[3978] Added unit tests

9 years ago[3978] Tentative leases-reclaim command
Francis Dupont [Fri, 16 Oct 2015 21:01:33 +0000 (23:01 +0200)] 
[3978] Tentative leases-reclaim command

9 years ago[3978] spelling
Francis Dupont [Fri, 16 Oct 2015 21:01:02 +0000 (23:01 +0200)] 
[3978] spelling

9 years ago[3978] spelling
Francis Dupont [Fri, 16 Oct 2015 21:00:35 +0000 (23:00 +0200)] 
[3978] spelling

9 years ago[3978] commands-list -> list-commands
Francis Dupont [Fri, 16 Oct 2015 20:31:51 +0000 (22:31 +0200)] 
[3978] commands-list -> list-commands

9 years ago[master] Added ChangeLog entry for #3968. trac3874_base trac3927_base trac3978_base
Marcin Siodelski [Fri, 16 Oct 2015 15:24:44 +0000 (17:24 +0200)] 
[master] Added ChangeLog entry for #3968.

9 years ago[master] Merge branch 'trac3968'
Marcin Siodelski [Fri, 16 Oct 2015 15:12:07 +0000 (17:12 +0200)] 
[master] Merge branch 'trac3968'

9 years ago[master] Merge branch 'master' of ssh://git.kea.isc.org/git/kea
Francis Dupont [Fri, 16 Oct 2015 14:00:31 +0000 (16:00 +0200)] 
[master] Merge branch 'master' of ssh://git.kea.isc.org/git/kea

9 years ago[master] Removed extra data_source_unittest.cc file
Francis Dupont [Fri, 16 Oct 2015 14:00:07 +0000 (16:00 +0200)] 
[master] Removed extra data_source_unittest.cc file

9 years ago[master] Compilation fix.
Tomek Mrugalski [Fri, 16 Oct 2015 12:57:52 +0000 (14:57 +0200)] 
[master] Compilation fix.

9 years ago[master] Fixed bare make distcheck
Francis Dupont [Fri, 16 Oct 2015 12:19:39 +0000 (14:19 +0200)] 
[master] Fixed bare make distcheck

9 years ago[master] Fixed Makefile.am
Francis Dupont [Fri, 16 Oct 2015 11:46:02 +0000 (13:46 +0200)] 
[master] Fixed Makefile.am

9 years ago[master] Updated git hash
Francis Dupont [Fri, 16 Oct 2015 11:44:55 +0000 (13:44 +0200)] 
[master] Updated git hash

9 years ago[master] Removed remaining references to system_messages.py
Francis Dupont [Fri, 16 Oct 2015 11:44:05 +0000 (13:44 +0200)] 
[master] Removed remaining references to system_messages.py

9 years ago[master] Finished merge of trac3516 (trac3516)
Francis Dupont [Fri, 16 Oct 2015 11:29:41 +0000 (13:29 +0200)] 
[master] Finished merge of trac3516 (trac3516)

9 years ago[3968] Updated PostgreSQL schema per review comments.
Marcin Siodelski [Thu, 15 Oct 2015 20:00:42 +0000 (22:00 +0200)] 
[3968] Updated PostgreSQL schema per review comments.

9 years ago[3968] Added ASC sorting for indexes by expiration.
Marcin Siodelski [Thu, 15 Oct 2015 19:48:01 +0000 (21:48 +0200)] 
[3968] Added ASC sorting for indexes by expiration.

9 years ago[3968] New constraints added to the upgrade scripts and tests.
Marcin Siodelski [Thu, 15 Oct 2015 19:33:38 +0000 (21:33 +0200)] 
[3968] New constraints added to the upgrade scripts and tests.

Also, updated the lease_hwaddr_source table with missing
entries from the lease.cc.

9 years ago[3968] Merge branch 'master' into trac3968
Marcin Siodelski [Thu, 15 Oct 2015 17:59:12 +0000 (19:59 +0200)] 
[3968] Merge branch 'master' into trac3968

9 years ago[3968] Added additional constraints to mysql creation script.
Marcin Siodelski [Thu, 15 Oct 2015 17:57:15 +0000 (19:57 +0200)] 
[3968] Added additional constraints to mysql creation script.

9 years ago[4059] Added new cases to selectSubnetRelayLinkaddr unit test
Francis Dupont [Thu, 15 Oct 2015 17:17:31 +0000 (19:17 +0200)] 
[4059] Added new cases to selectSubnetRelayLinkaddr unit test

9 years ago[master] Added Changelog entry for #4075.
Marcin Siodelski [Thu, 15 Oct 2015 14:20:15 +0000 (16:20 +0200)] 
[master] Added Changelog entry for #4075.

9 years ago[master] Merge branch 'trac4075'
Marcin Siodelski [Thu, 15 Oct 2015 14:16:50 +0000 (16:16 +0200)] 
[master] Merge branch 'trac4075'

9 years ago[4058] Added an initResponse unit test
Francis Dupont [Thu, 15 Oct 2015 13:47:45 +0000 (15:47 +0200)] 
[4058] Added an initResponse unit test

9 years ago[4058] Moved client-id option copy
Francis Dupont [Thu, 15 Oct 2015 12:44:51 +0000 (14:44 +0200)] 
[4058] Moved client-id option copy

9 years ago[3516] Added some comments in processFile() for loop
Francis Dupont [Thu, 15 Oct 2015 12:18:05 +0000 (14:18 +0200)] 
[3516] Added some comments in processFile() for loop

9 years ago[3516] Added a cap to DictionaryType
Francis Dupont [Thu, 15 Oct 2015 12:10:35 +0000 (14:10 +0200)] 
[3516] Added a cap to DictionaryType

9 years ago[master] Unit-test fixes after trac3987 merge.
Tomek Mrugalski [Thu, 15 Oct 2015 08:34:01 +0000 (10:34 +0200)] 
[master] Unit-test fixes after trac3987 merge.

9 years ago[master] ChangeLog updated after trac3986 merge.
Tomek Mrugalski [Thu, 15 Oct 2015 07:32:31 +0000 (09:32 +0200)] 
[master] ChangeLog updated after trac3986 merge.

9 years ago[master] Merge branch 'trac3987' (lease6_decline hook)
Tomek Mrugalski [Thu, 15 Oct 2015 07:29:55 +0000 (09:29 +0200)] 
[master] Merge branch 'trac3987' (lease6_decline hook)

9 years ago[3987] Changes after review:
Tomek Mrugalski [Thu, 15 Oct 2015 07:29:09 +0000 (09:29 +0200)] 
[3987] Changes after review:

 - comments, message corrected
 - unit-tests renamed to follow naming convention better

9 years ago[master] Added ChangeLog entry for #3975.
Marcin Siodelski [Thu, 15 Oct 2015 06:49:25 +0000 (08:49 +0200)] 
[master] Added ChangeLog entry for #3975.

9 years ago[master] Merge branch 'trac3975'
Marcin Siodelski [Thu, 15 Oct 2015 06:43:51 +0000 (08:43 +0200)] 
[master] Merge branch 'trac3975'

9 years ago[master] ChangeLog updated after #3985 merge.
Tomek Mrugalski [Wed, 14 Oct 2015 18:27:52 +0000 (20:27 +0200)] 
[master] ChangeLog updated after #3985 merge.

9 years ago[3975] Addressed review comments.
Marcin Siodelski [Wed, 14 Oct 2015 17:28:04 +0000 (19:28 +0200)] 
[3975] Addressed review comments.

9 years ago[3443] Removed some redundant length checks
Stephen Morris [Wed, 14 Oct 2015 17:10:09 +0000 (18:10 +0100)] 
[3443] Removed some redundant length checks

Also some refomatting to better conform to Kea style guide and
added some method headers.

9 years ago[master] Merge branch 'trac3985' (automated declined v6 lease recovery)
Tomek Mrugalski [Wed, 14 Oct 2015 14:56:47 +0000 (16:56 +0200)] 
[master] Merge branch 'trac3985' (automated declined v6 lease recovery)