1079. [bug] jpopelka
Fixed compilation issue in MySQL host data source: the
- dhcp_identifer_length is now unsigned long. This addresses
+ dhcp_identifier_length is now unsigned long. This addresses
a compilation problem on Fedora.
(Github #17, git 8548d1b589df98cc956b4d80d2cb8819ef576717)
% DHCP6_FLEX_ID flexible identifier generated for incoming packet: %1
This debug message is printed when host reservation type is set to flexible identifier
and the expression specified in its configuration generated (was evaluated to)
-an indetifier for incoming packet. This debug message is mainly intended as a
+an identifier for incoming packet. This debug message is mainly intended as a
debugging assistance for flexible identifier.
% DHCP6_HANDLE_SIGNAL_EXCEPTION An exception was thrown while handing signal: %1
const ClientIdPtr& client_id,
const uint32_t transid);
- /// @brief Returns text representation of the given packet identifers.
+ /// @brief Returns text representation of the given packet identifiers.
///
/// This variant of the method does not include transaction id.
///
//
// Three 1 byte fields to describe a network interface: type, major and minor
RECORD_DECL(CLIENT_NDI_RECORDS, OPT_UINT8_TYPE, OPT_UINT8_TYPE, OPT_UINT8_TYPE);
-// A client identifer: a 1 byte type field followed by opaque data depending on the type
+// A client identifier: a 1 byte type field followed by opaque data depending on the type
RECORD_DECL(UUID_GUID_RECORDS, OPT_UINT8_TYPE, OPT_BINARY_TYPE);
/// @brief Definitions of standard DHCPv4 options.
// Create a packet.
Pkt6 pkt(DHCPV6_SOLICIT, 0x2312);
- // Add empty client idenitifier option.
+ // Add empty client identifier option.
pkt.addOption(OptionPtr(new Option(Option::V6, D6O_CLIENTID)));
EXPECT_EQ("duid=[no info], tid=0x2312", pkt.getLabel());
}
///
/// This method supports both v4 and v6.
///
- /// @param subnet_id subnet identfier.
+ /// @param subnet_id subnet identifier.
/// @param addr specified address.
/// @return true if deletion was successful, false if the host was not there.
/// @throw various exceptions in case of errors
// Set identifier type.
identifier_type_ = getIdentifierType(name);
- // Idetifier value can either be specified as string of hexadecimal
+ // Identifier value can either be specified as string of hexadecimal
// digits or a string in quotes. The latter is copied to a vector excluding
// quote characters.
/// - "yy:yy:yy:yy:yy:yy"
/// - "yyyyyyyyyy",
/// - "0xyyyyyyyyyy",
- /// - "'some identfier'".
+ /// - "'some identifier'".
/// where y is a hexadecimal digit.
///
/// Note that it is possible to use textual representation, e.g. 'some identifier',
/// @brief Returns a host from specific subnet and reserved address.
///
- /// @param subnet_id subnet identfier.
+ /// @param subnet_id subnet identifier.
/// @param addr specified address.
///
/// @return Const @c host object that has a reservation for specified address.
///
/// This method supports both v4 and v6.
///
- /// @param subnet_id subnet identfier.
+ /// @param subnet_id subnet identifier.
/// @param addr specified address.
/// @return true if deletion was successful, false if the host was not there.
/// @throw various exceptions in case of errors
///
/// This method supports v4 hosts only.
///
- /// @param subnet_id subnet identfier.
+ /// @param subnet_id subnet identifier.
/// @param addr specified address.
/// @return true if deletion was successful, false if the host was not there.
/// @throw various exceptions in case of errors
///
/// This method supports v6 hosts only.
///
- /// @param subnet_id subnet identfier.
+ /// @param subnet_id subnet identifier.
/// @param addr specified address.
/// @return true if deletion was successful, false if the host was not there.
/// @throw various exceptions in case of errors
///
/// This method supports both v4 and v6.
///
- /// @param subnet_id subnet identfier.
+ /// @param subnet_id subnet identifier.
/// @param addr specified address.
/// @return true if deletion was successful, false if the host was not there.
/// @throw various exceptions in case of errors
///
/// This method supports v4 hosts only.
///
- /// @param subnet_id subnet identfier.
+ /// @param subnet_id subnet identifier.
/// @param addr specified address.
/// @return true if deletion was successful, false if the host was not there.
/// @throw various exceptions in case of errors
///
/// This method supports v6 hosts only.
///
- /// @param subnet_id subnet identfier.
+ /// @param subnet_id subnet identifier.
/// @param addr specified address.
/// @return true if deletion was successful, false if the host was not there.
/// @throw various exceptions in case of errors
const std::string identifier_name = Host::getIdentifierName(type);
// Construct unique identifier for a host. This is a string
- // consisting of a word "idenetifier", hyphen and the name of
+ // consisting of a word "identifier", hyphen and the name of
// the identifier, e.g. "identifier-hw-address".
std::ostringstream identifier_without_quotes;
identifier_without_quotes << "identifier-" << identifier_name;