Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [#2595] Updated all-keys.json files | Francis Dupont | 2022-10-18 | 1 | -1/+11 |
| | |||||
* | [#2441] fixed comments in examples | Razvan Becheriu | 2022-08-29 | 2 | -17/+21 |
| | |||||
* | [#2441] added HA+MT and HA+MT+TLS examples | Razvan Becheriu | 2022-08-27 | 2 | -38/+209 |
| | |||||
* | [#2071] fixed distcheck | Razvan Becheriu | 2022-08-10 | 1 | -8/+8 |
| | |||||
* | [#2474] added unittests which load and validate example files | Razvan Becheriu | 2022-07-22 | 25 | -104/+107 |
| | |||||
* | [#2224] added missing parameters including TLS connection parameters to YANG ↵ | Razvan Becheriu | 2022-07-22 | 2 | -7/+51 |
| | | | | models | ||||
* | [#2418] Addressed all 'four database' occurrences | Francis Dupont | 2022-06-20 | 12 | -12/+12 |
| | |||||
* | [#2423] release changes: spelling corrections | Andrei Pavel | 2022-05-23 | 1 | -2/+2 |
| | |||||
* | [#1716] fixed doxygen, missing documentation, fixed compilation | Razvan Becheriu | 2022-04-04 | 1 | -9/+11 |
| | |||||
* | [#1716] Extend existing tests | Slawek Figiel | 2022-04-04 | 1 | -1/+16 |
| | |||||
* | [#2116] addressed review | Razvan Becheriu | 2022-03-31 | 1 | -14/+1 |
| | |||||
* | [#2116] remove cql code | Razvan Becheriu | 2022-03-31 | 17 | -218/+30 |
| | |||||
* | [#2249] addressed comments | Razvan Becheriu | 2022-03-15 | 1 | -3/+3 |
| | |||||
* | [#2249] Addressed comments | Francis Dupont | 2022-03-14 | 1 | -1/+1 |
| | |||||
* | [#2249] Checkpoint: doc to finish | Francis Dupont | 2022-03-14 | 1 | -1/+2 |
| | |||||
* | [#2249] Checkpoint before regen | Francis Dupont | 2022-03-14 | 1 | -0/+7 |
| | |||||
* | [#2036] make host reservations lookup before lease lookup configurable | Razvan Becheriu | 2022-02-04 | 1 | -0/+7 |
| | |||||
* | [#34] Addressed almost all comments | Francis Dupont | 2022-01-06 | 1 | -2/+2 |
| | |||||
* | [#34] Checkpoint: more PgSQL/CQL and hook | Francis Dupont | 2022-01-06 | 2 | -2/+2 |
| | |||||
* | [#34] Checkpoint: code and tests to do | Francis Dupont | 2022-01-06 | 2 | -2/+20 |
| | |||||
* | [#2136] update all-keys-netconf.json and remove all-keys.json from tests | Andrei Pavel | 2021-11-18 | 1 | -60/+331 |
| | |||||
* | [#2136] add most of the missing YANG nodes and test with all-keys.json | Andrei Pavel | 2021-11-18 | 1 | -1/+1 |
| | |||||
* | [#2139] Updated max-response-delay in example configs | Thomas Markwalder | 2021-11-11 | 1 | -1/+1 |
| | | | | | | modified: doc/examples/kea4/ha-load-balancing-primary.json doc/examples/kea6/ha-hot-standby.json | ||||
* | [#1307] Addressed review comments | Thomas Markwalder | 2021-09-17 | 1 | -1/+1 |
| | | | | | | | | | | Minor clean ups in: ChangeLog doc/examples/kea4/all-keys.json doc/examples/kea6/all-keys.json doc/sphinx/arm/hooks-ha.rst src/bin/dhcp4/tests/config_parser_unittest.cc | ||||
* | [#1307] kea-dhcp6 supports parked-packet-limit | Thomas Markwalder | 2021-09-17 | 1 | -0/+12 |
| | | | | | | | | | | | | | | | | | | | src/bin/dhcp6/dhcp6_lexer.ll src/bin/dhcp6/dhcp6_parser.yy src/bin/dhcp6/json_config_parser.cc src/lib/dhcpsrv/parsers/simple_parser6.cc doc/examples/kea6/all-keys.json Added parked-packet-limit src/bin/dhcp6/dhcp6_messages.* DHCP6_HOOK_LEASES6_PARKING_LOT_FULL src/bin/dhcp6/dhcp6_srv.cc Dhcpv6Srv::processDhcp6Query() - drops the packet if the parking lot is full src/bin/dhcp6/tests/get_config_unittest.cc updated | ||||
* | [#1710] Added lifetimes to v6 client classes | Thomas Markwalder | 2021-08-20 | 1 | -1/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | kea-dhcp6 client classes now support valid and preferred lifetime triplets. Need to update ARM and CB yet. /doc/examples/kea6/all-keys.json Updated /src/bin/dhcp6/dhcp6_lexer.ll b/src/bin/dhcp6/dhcp6_lexer.ll Added preferred and valid lifetime parameters to client class /src/bin/dhcp6/dhcp6_parser.yy Added preferred and valid lifetime parameters to client class src/bin/dhcp6/tests/config_parser_unittest.cc TEST_F(Dhcp6ParserTest, clientClassValidPreferredLifetime) - new test /src/bin/dhcp6/tests/parser_unittest.cc Added use of EXPECT_NO_THROW_LOG to ease finding JSON errors /src/lib/dhcpsrv/alloc_engine.* AllocEngine::getLifetimes6() - new function Lease6Ptr AllocEngine::createLease6() - calls new function /src/lib/dhcpsrv/client_class_def.* /src/lib/dhcpsrv/parsers/client_class_def_parser.cc ClientClassDef - added support for preferred lifetime triplet /src/lib/dhcpsrv/tests/alloc_engine6_unittest.cc TEST_F(AllocEngine6Test, getValidLifetime) TEST_F(AllocEngine6Test, getPreferredLifetime) - new tests /src/lib/dhcpsrv/tests/client_class_def_parser_unittest.cc TEST_F(ClientClassDefParserTest, preferredLifetimeTests) - new test /src/lib/dhcpsrv/tests/client_class_def_unittest.cc updated tests | ||||
* | [#1930] minor wording and formatting changes | Andrei Pavel | 2021-08-12 | 4 | -5/+5 |
| | |||||
* | [#1930] do not mention reservations-out-of-pool when reservations-in-subnet ↵ | Razvan Becheriu | 2021-08-12 | 4 | -1/+8 |
| | | | | is false | ||||
* | [#1860] document lenient option parsing | Andrei Pavel | 2021-05-19 | 1 | -0/+8 |
| | |||||
* | [#1821] spelling corrections | Andrei Pavel | 2021-04-26 | 11 | -11/+11 |
| | |||||
* | [#1621] implemented "on-fail" action for connection recovery | Razvan Becheriu | 2021-03-29 | 2 | -4/+6 |
| | |||||
* | [#1621] disabling connection recovery mechanish is not available in core ↵ | Razvan Becheriu | 2021-03-29 | 2 | -8/+3 |
| | | | | managers | ||||
* | [#1621] added documentation | Razvan Becheriu | 2021-03-29 | 2 | -0/+5 |
| | |||||
* | [#1621] add enable-connection-recovery parameter to configure connection ↵ | Razvan Becheriu | 2021-03-29 | 2 | -2/+0 |
| | | | | recovery | ||||
* | [#1621] updated parsers | Razvan Becheriu | 2021-03-29 | 1 | -0/+2 |
| | |||||
* | [#1621] add disable-dhcp-on-db-loss parameter to configure network state effect | Razvan Becheriu | 2021-03-29 | 3 | -0/+5 |
| | |||||
* | [#1760] spell checks | Andrei Pavel | 2021-03-26 | 4 | -6/+6 |
| | |||||
* | [#1717] correct some URLs | Andrei Pavel | 2021-03-23 | 1 | -1/+1 |
| | |||||
* | [#1656] 1.9.4 release: spelling check | Andrei Pavel | 2021-01-25 | 2 | -2/+2 |
| | |||||
* | [#1405] updated unittests | Razvan Becheriu | 2020-11-18 | 4 | -17/+32 |
| | |||||
* | [#1405] addressed comments | Razvan Becheriu | 2020-11-18 | 4 | -15/+66 |
| | |||||
* | [#1405] merged first pass | Razvan Becheriu | 2020-11-18 | 1 | -9/+14 |
| | |||||
* | [#1405] in-subnet is equivalent to all | Razvan Becheriu | 2020-11-18 | 1 | -3/+3 |
| | |||||
* | [#1405] fixed comments | Razvan Becheriu | 2020-11-18 | 1 | -3/+3 |
| | |||||
* | [#1405] implemented separate boolean flags for reservation modes | Razvan Becheriu | 2020-11-18 | 1 | -24/+30 |
| | |||||
* | [#1405] minor changes | Razvan Becheriu | 2020-11-18 | 1 | -4/+2 |
| | |||||
* | [#1405] reverted test configs | Razvan Becheriu | 2020-11-18 | 4 | -81/+13 |
| | |||||
* | [#1405] fixed unittests | Razvan Becheriu | 2020-11-18 | 5 | -33/+33 |
| | |||||
* | [#1405] added parser for the reservation-modes map | Razvan Becheriu | 2020-11-18 | 5 | -20/+113 |
| | |||||
* | [#1457] change pools to not overlap in all-keys | Andrei Pavel | 2020-11-16 | 8 | -11/+4 |
| |