2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-05 00:15:17 +00:00

[#363, !177] Addressed review comments

This commit is contained in:
Thomas Markwalder
2018-12-20 13:33:42 -05:00
parent c580327cfe
commit c6e2ee6301
2 changed files with 5 additions and 3 deletions

View File

@@ -182,15 +182,15 @@ public:
/// and the Relay Agent Information option and END options last. This
/// function is initially called to pack the options for a packet in
/// @ref Pkt4::pack(). That call leads to it being called recursively in
/// vai @ref Option::packOptions(). Thus the logic used to output the
/// @ref Option::packOptions(). Thus the logic used to output the
/// message type should only be executed by the top-most. This is governed
/// by the paramater top, below.
///
/// @param buf output buffer (assembled options will be stored here)
/// @param options collection of options to store to
/// @param top indicates if this is the first call to pack the options.
/// When true logic to emit the message type is executed. It defaults to
/// false.
/// When true logic to emit the message type first is executed. It
/// defaults to false.
static void packOptions4(isc::util::OutputBuffer& buf,
const isc::dhcp::OptionCollection& options,
bool top = false);

View File

@@ -135,6 +135,8 @@ Pkt4::pack() {
// write DHCP magic cookie
buffer_out_.writeUint32(DHCP_OPTIONS_COOKIE);
// Call packOptions4() with parameter,"top", true. This invokes
// logic to emit the message type option first.
LibDHCP::packOptions4(buffer_out_, options_, true);
// add END option that indicates end of options