mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-30 05:27:55 +00:00
[2270] DHCPv4 parser fixes. Tests now pass.
This commit is contained in:
parent
650a6c1b4f
commit
552657fff4
@ -399,7 +399,7 @@ public:
|
||||
pos = txt.find("-");
|
||||
if (pos != string::npos) {
|
||||
// using min-max notation
|
||||
IOAddress min(txt.substr(0,pos - 1));
|
||||
IOAddress min(txt.substr(0,pos));
|
||||
IOAddress max(txt.substr(pos + 1));
|
||||
|
||||
Pool4Ptr pool(new Pool4(min, max));
|
||||
|
@ -95,7 +95,6 @@ TEST_F(Dhcp4ParserTest, empty_subnet) {
|
||||
|
||||
EXPECT_NO_THROW(status = configureDhcp4Server(*srv_,
|
||||
Element::fromJSON("{ \"interface\": [ \"all\" ],"
|
||||
"\"preferred-lifetime\": 3000,"
|
||||
"\"rebind-timer\": 2000, "
|
||||
"\"renew-timer\": 1000, "
|
||||
"\"subnet4\": [ ], "
|
||||
@ -181,7 +180,6 @@ TEST_F(Dhcp4ParserTest, pool_out_of_subnet) {
|
||||
ConstElementPtr status;
|
||||
|
||||
string config = "{ \"interface\": [ \"all\" ],"
|
||||
"\"preferred-lifetime\": 3000,"
|
||||
"\"rebind-timer\": 2000, "
|
||||
"\"renew-timer\": 1000, "
|
||||
"\"subnet4\": [ { "
|
||||
|
Loading…
x
Reference in New Issue
Block a user