BIND 10 trac2304, updated. c974d3a5e481c63242f128f630b9e7e5ac4f1359 [2304] Removed enum initializers for DataType values.
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Oct 22 09:14:34 UTC 2012
The branch, trac2304 has been updated
via c974d3a5e481c63242f128f630b9e7e5ac4f1359 (commit)
from b617d1a26e4e4fd536b37848b1dd39ff40f5213b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c974d3a5e481c63242f128f630b9e7e5ac4f1359
Author: Marcin Siodelski <marcin at isc.org>
Date: Mon Oct 22 11:14:24 2012 +0200
[2304] Removed enum initializers for DataType values.
-----------------------------------------------------------------------
Summary of changes:
src/lib/dhcp/option_definition.h | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dhcp/option_definition.h b/src/lib/dhcp/option_definition.h
index c7bdf44..c274ce9 100644
--- a/src/lib/dhcp/option_definition.h
+++ b/src/lib/dhcp/option_definition.h
@@ -83,20 +83,20 @@ public:
/// Data types of DHCP option fields.
enum DataType {
- EMPTY_TYPE = 0,
- BOOLEAN_TYPE = 1,
- INT8_TYPE = 2,
- INT16_TYPE = 3,
- INT32_TYPE = 4,
- UINT8_TYPE = 5,
- UINT16_TYPE = 6,
- UINT32_TYPE = 7,
- IPV4_ADDRESS_TYPE = 8,
- IPV6_ADDRESS_TYPE = 9,
- STRING_TYPE = 10,
- FQDN_TYPE = 11,
- RECORD_TYPE = 12,
- UNKNOWN_TYPE = 13
+ EMPTY_TYPE,
+ BOOLEAN_TYPE,
+ INT8_TYPE,
+ INT16_TYPE,
+ INT32_TYPE,
+ UINT8_TYPE,
+ UINT16_TYPE,
+ UINT32_TYPE,
+ IPV4_ADDRESS_TYPE,
+ IPV6_ADDRESS_TYPE,
+ STRING_TYPE,
+ FQDN_TYPE,
+ RECORD_TYPE,
+ UNKNOWN_TYPE
};
/// List of fields within the record.
More information about the bind10-changes
mailing list