2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 05:55:28 +00:00

[5022] Options can only be specified for DHCPv6 pools.

This commit is contained in:
Marcin Siodelski
2016-10-05 20:56:42 +02:00
parent 0a6024687c
commit b10ec64987
4 changed files with 21 additions and 6 deletions

View File

@@ -32,6 +32,7 @@
#include <limits>
#include <iostream>
#include <netinet/in.h>
#include <vector>
#include <map>
@@ -61,7 +62,7 @@ public:
/// @param pools storage container in which to store the parsed pool
/// upon "commit"
Pool4Parser(const std::string& param_name, PoolStoragePtr pools)
:PoolParser(param_name, pools) {
:PoolParser(param_name, pools, AF_INET) {
}
protected: