// D6O_KRB_KDC = 78, /* RFC6784 */
D6O_CLIENT_LINKLAYER_ADDR = 79, /* RFC6939 */
D6O_LINK_ADDRESS = 80, /* RFC6977 */
-// D6O_RADIUS = 81, /* RFC7037 */
+ D6O_RADIUS = 81, /* RFC7037 */
D6O_SOL_MAX_RT = 82, /* RFC7083 */
D6O_INF_MAX_RT = 83, /* RFC7083 */
// D6O_ADDRSEL = 84, /* RFC7078 */
NO_RECORD_DEF, "" },
{ "link-address", D6O_LINK_ADDRESS, OPT_IPV6_ADDRESS_TYPE, false,
NO_RECORD_DEF, "" },
+ // @todo: find a way to parse content as RADIUS attributes.
+ { "radius", D6O_RADIUS, OPT_BINARY_TYPE, false, NO_RECORD_DEF, "" },
{ "solmax-rt", D6O_SOL_MAX_RT, OPT_UINT32_TYPE, false, NO_RECORD_DEF, "" },
{ "inf-max-rt", D6O_INF_MAX_RT, OPT_UINT32_TYPE, false, NO_RECORD_DEF, "" },
{ "dhcpv4-message", D6O_DHCPV4_MSG, OPT_BINARY_TYPE, false, NO_RECORD_DEF, "" },
LibDhcpTest::testStdOptionDefs6(D6O_LINK_ADDRESS, begin, begin + 16,
typeid(OptionCustom));
+ // @todo: Put real RADIUS options in content when we'll be able to
+ // parse it...
+ LibDhcpTest::testStdOptionDefs6(D6O_RADIUS, begin, end,
+ typeid(Option));
+
LibDhcpTest::testStdOptionDefs6(D6O_SOL_MAX_RT, begin, begin + 4,
typeid(OptionInt<uint32_t>));