mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-09-03 15:35:17 +00:00
[2304] Removed enum initializers for DataType values.
This commit is contained in:
@@ -83,20 +83,20 @@ public:
|
|||||||
|
|
||||||
/// Data types of DHCP option fields.
|
/// Data types of DHCP option fields.
|
||||||
enum DataType {
|
enum DataType {
|
||||||
EMPTY_TYPE = 0,
|
EMPTY_TYPE,
|
||||||
BOOLEAN_TYPE = 1,
|
BOOLEAN_TYPE,
|
||||||
INT8_TYPE = 2,
|
INT8_TYPE,
|
||||||
INT16_TYPE = 3,
|
INT16_TYPE,
|
||||||
INT32_TYPE = 4,
|
INT32_TYPE,
|
||||||
UINT8_TYPE = 5,
|
UINT8_TYPE,
|
||||||
UINT16_TYPE = 6,
|
UINT16_TYPE,
|
||||||
UINT32_TYPE = 7,
|
UINT32_TYPE,
|
||||||
IPV4_ADDRESS_TYPE = 8,
|
IPV4_ADDRESS_TYPE,
|
||||||
IPV6_ADDRESS_TYPE = 9,
|
IPV6_ADDRESS_TYPE,
|
||||||
STRING_TYPE = 10,
|
STRING_TYPE,
|
||||||
FQDN_TYPE = 11,
|
FQDN_TYPE,
|
||||||
RECORD_TYPE = 12,
|
RECORD_TYPE,
|
||||||
UNKNOWN_TYPE = 13
|
UNKNOWN_TYPE
|
||||||
};
|
};
|
||||||
|
|
||||||
/// List of fields within the record.
|
/// List of fields within the record.
|
||||||
|
Reference in New Issue
Block a user