uint16_t type,
OptionBufferConstIter begin,
OptionBufferConstIter end,
- OpaqueDataTuple::LengthFieldType lenFieldType) {
+ OpaqueDataTuple::LengthFieldType length_field_type) {
boost::shared_ptr<OptionOpaqueDataTuples>
- option(new OptionOpaqueDataTuples(u, type, begin, end, lenFieldType));
+ option(new OptionOpaqueDataTuples(u, type, begin, end, length_field_type));
return (option);
}
/// with a list of tuples.
/// @param end iterator pointing to the end of the buffer with
/// a list of tuples.
- /// @param lenFieldType explicit tuple's length field type.
+ /// @param length_field_type explicit tuple's length field type.
///
/// @return instance of the DHCP option.
static OptionPtr factoryOpaqueDataTuples(Option::Universe u,
uint16_t type,
OptionBufferConstIter begin,
OptionBufferConstIter end,
- OpaqueDataTuple::LengthFieldType lenFieldType);
+ OpaqueDataTuple::LengthFieldType length_field_type);
/// @brief Factory function to create option with integer value.
///
virtual std::string toText(int indent = 0) const;
private:
- /// @brief length of the field which holds he size of the tuple.
+ /// @brief length of the field which holds the size of the tuple.
OpaqueDataTuple::LengthFieldType length_field_type_;
/// @brief Collection of opaque data tuples carried by the option.