updated leases are displayed.
% DHCPSRV_MYSQL_UPGRADE_EXTENDED_INFO6_ERROR upgrading extending info for IPv6 lease at %1 failed with %2
-A debug message issued when the server failed to upgrade an extended info.
-The address of the lease and the error message are displayed.
+A debug message issued when the server failed to upgrade the extended info
+for a lease. The address of the lease and the error message are displayed.
% DHCPSRV_MYSQL_UPGRADE_EXTENDED_INFO6_PAGE upgrading IPv6 lease extended info at page %1 starting at %2 (updated %3)
A debug message issued when the server upgrades IPv6 lease extended info.
updated leases are displayed.
% DHCPSRV_PGSQL_UPGRADE_EXTENDED_INFO6_ERROR upgrading extending info for IPv6 lease at %1 failed with %2
-A debug message issued when the server failed to upgrade an extended info.
-The address of the lease and the error message are displayed.
+A debug message issued when the server failed to upgrade the extended info
+for a lease. The address of the lease and the error message are displayed.
% DHCPSRV_PGSQL_UPGRADE_EXTENDED_INFO6_PAGE upgrading IPv6 lease extended info at page %1 starting at %2 (updated %3)
A debug message issued when the server upgrades IPv6 lease extended info.
// Expecting IPv6 valid prefix and address.
if (!link_addr.isV6()) {
- isc_throw(InvalidAddressFamily, "expected IPv6 address while "
+ isc_throw(InvalidAddressFamily, "expected IPv6 link address while "
"retrieving leases from the lease database, got "
<< link_addr);
}
<< static_cast<unsigned>(link_len));
}
if (!lower_bound_address.isV6()) {
- isc_throw(InvalidAddressFamily, "expected IPv6 address while "
+ isc_throw(InvalidAddressFamily, "expected IPv6 start address while "
"retrieving leases from the lease database, got "
<< lower_bound_address);
}
// Expecting IPv6 valid prefix and address.
if (!link_addr.isV6()) {
- isc_throw(InvalidAddressFamily, "expected IPv6 address while "
+ isc_throw(InvalidAddressFamily, "expected IPv6 link address while "
"retrieving leases from the lease database, got "
<< link_addr);
}
<< static_cast<unsigned>(link_len));
}
if (!lower_bound_address.isV6()) {
- isc_throw(InvalidAddressFamily, "expected IPv6 address while "
+ isc_throw(InvalidAddressFamily, "expected IPv6 start address while "
"retrieving leases from the lease database, got "
<< lower_bound_address);
}
// Expecting IPv6 valid prefix and address.
if (!link_addr.isV6()) {
- isc_throw(InvalidAddressFamily, "expected IPv6 address while "
+ isc_throw(InvalidAddressFamily, "expected IPv6 link address while "
"retrieving leases from the lease database, got "
<< link_addr);
}
<< static_cast<unsigned>(link_len));
}
if (!lower_bound_address.isV6()) {
- isc_throw(InvalidAddressFamily, "expected IPv6 address while "
+ isc_throw(InvalidAddressFamily, "expected IPv6 start address while "
"retrieving leases from the lease database, got "
<< lower_bound_address);
}
// Expecting IPv6 valid prefix and address.
if (!link_addr.isV6()) {
- isc_throw(InvalidAddressFamily, "expected IPv6 address while "
+ isc_throw(InvalidAddressFamily, "expected IPv6 link address while "
"retrieving leases from the lease database, got "
<< link_addr);
}
<< static_cast<unsigned>(link_len));
}
if (!lower_bound_address.isV6()) {
- isc_throw(InvalidAddressFamily, "expected IPv6 address while "
+ isc_throw(InvalidAddressFamily, "expected IPv6 start address while "
"retrieving leases from the lease database, got "
<< lower_bound_address);
}
// Expecting IPv6 valid prefix and address.
if (!link_addr.isV6()) {
- isc_throw(InvalidAddressFamily, "expected IPv6 address while "
+ isc_throw(InvalidAddressFamily, "expected IPv6 link address while "
"retrieving leases from the lease database, got "
<< link_addr);
}
<< static_cast<unsigned>(link_len));
}
if (!lower_bound_address.isV6()) {
- isc_throw(InvalidAddressFamily, "expected IPv6 address while "
+ isc_throw(InvalidAddressFamily, "expected IPv6 start address while "
"retrieving leases from the lease database, got "
<< lower_bound_address);
}
// Expecting IPv6 valid prefix and address.
if (!link_addr.isV6()) {
- isc_throw(InvalidAddressFamily, "expected IPv6 address while "
+ isc_throw(InvalidAddressFamily, "expected IPv6 link address while "
"retrieving leases from the lease database, got "
<< link_addr);
}
}
if (!lower_bound_address.isV6()) {
- isc_throw(InvalidAddressFamily, "expected IPv6 address while "
+ isc_throw(InvalidAddressFamily, "expected IPv6 start address while "
"retrieving leases from the lease database, got "
<< lower_bound_address);
}
};
/// @brief Verifies that the lease manager can start.
-TEST_F(MySqlExtendedInfoTest, startFalse) {
+TEST_F(MySqlExtendedInfoTest, startWithoutExtendedTables) {
start(false);
}
/// @brief Verifies that the lease manager can start with MT.
-TEST_F(MySqlExtendedInfoTest, startFalseMultiThreading) {
+TEST_F(MySqlExtendedInfoTest, startWithoutExtendedTablesMultiThreading) {
MultiThreadingTest mt(true);
start(false);
}
/// @brief Verifies that the lease manager can start with tables.
-TEST_F(MySqlExtendedInfoTest, startTrue) {
+TEST_F(MySqlExtendedInfoTest, startWithExtendedTables) {
start(true);
}
/// @brief Verifies that the lease manager can start with tables and MT.
-TEST_F(MySqlExtendedInfoTest, startTrueMultiThreading) {
+TEST_F(MySqlExtendedInfoTest, startWithExtendedTablesMultiThreading) {
MultiThreadingTest mt(true);
start(true);
}
};
/// @brief Verifies that the lease manager can start.
-TEST_F(PgSqlExtendedInfoTest, startFalse) {
+TEST_F(PgSqlExtendedInfoTest, startWithoutExtendedTables) {
start(false);
}
/// @brief Verifies that the lease manager can start with MT.
-TEST_F(PgSqlExtendedInfoTest, startFalseMultiThreading) {
+TEST_F(PgSqlExtendedInfoTest, startWithoutExtendedTablesMultiThreading) {
MultiThreadingTest mt(true);
start(false);
}
/// @brief Verifies that the lease manager can start with tables.
-TEST_F(PgSqlExtendedInfoTest, startTrue) {
+TEST_F(PgSqlExtendedInfoTest, startWithExtendedTables) {
start(true);
}
/// @brief Verifies that the lease manager can start with tables and MT.
-TEST_F(PgSqlExtendedInfoTest, startTrueMultiThreading) {
+TEST_F(PgSqlExtendedInfoTest, startWithExtendedTablesMultiThreading) {
MultiThreadingTest mt(true);
start(true);
}