BIND 10 trac1239, updated. eb591a94c560e7ac7067141ee451b7d693a2bae1 [1239] Comments improved.
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Dec 14 17:46:49 UTC 2011
The branch, trac1239 has been updated
via eb591a94c560e7ac7067141ee451b7d693a2bae1 (commit)
from 09f2de75e96261cc6bf0709cd30877ed3d0b8a20 (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 eb591a94c560e7ac7067141ee451b7d693a2bae1
Author: Tomek Mrugalski <tomasz at isc.org>
Date: Wed Dec 14 18:46:26 2011 +0100
[1239] Comments improved.
-----------------------------------------------------------------------
Summary of changes:
src/lib/dhcp/option.h | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dhcp/option.h b/src/lib/dhcp/option.h
index daf5afc..ff4f36e 100644
--- a/src/lib/dhcp/option.h
+++ b/src/lib/dhcp/option.h
@@ -239,23 +239,23 @@ public:
/// @brief Returns content of first byte.
///
- /// This method will throw OutOfRange if option has 0 length.
+ /// @exception OutOfRange Thrown if the option has a length of 0.
///
/// @return value of the first byte
uint8_t getUint8();
/// @brief Returns content of first word.
///
- /// This method will throw OutOfRange if option has less than 2 length.
+ /// @exception OutOfRange Thrown if the option has a length less than 2.
///
/// @return uint16_t value stored on first two bytes
uint16_t getUint16();
/// @brief Returns content of first double word.
///
- /// This method will throw OutOfRange if option has less than 4 length.
+ /// @exception OutOfRange Thrown if the option has a length less than 4.
///
- /// @return uint14_t value stored on first four bytes
+ /// @return uint32_t value stored on first four bytes
uint32_t getUint32();
/// just to force that every option has virtual dtor
More information about the bind10-changes
mailing list