2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00
kea/fuzz/kea-dhcp6.h

32 lines
486 B
C
Raw Normal View History

#include <string>
extern std::string KEA_DHCP6_CONF = R"(
{
"Dhcp6": {
"interfaces-config": {
"interfaces": [
"*"
]
},
"subnet6": [
{
"id": 1,
"pd-pools": [
{
"delegated-len": 120,
"prefix": "2001:db8:1:0:2::",
"prefix-len": 80
}
],
"pools": [
{
"pool": "::/80"
}
],
"subnet": "::/64"
}
]
}
}
)";