2
0
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:
Marcin Siodelski
2012-10-22 11:14:24 +02:00
parent b617d1a26e
commit c974d3a5e4

View File

@@ -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.