diff options
author | Francis Dupont <fdupont@isc.org> | 2021-11-29 18:10:03 +0100 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2022-01-06 13:12:40 +0100 |
commit | 7f80b854d2f59bbc0aee3c2eccc697f92e4e1d32 (patch) | |
tree | 450a063ed60ea40d2a9871436f9b3e08a4200de2 /src/lib/dhcpsrv/dhcpsrv_messages.mes | |
parent | [#34] Checkpoint: code and tests to do (diff) | |
download | kea-7f80b854d2f59bbc0aee3c2eccc697f92e4e1d32.tar.xz kea-7f80b854d2f59bbc0aee3c2eccc697f92e4e1d32.zip |
[#34] Chekpoint: added easy cases
Diffstat (limited to 'src/lib/dhcpsrv/dhcpsrv_messages.mes')
-rw-r--r-- | src/lib/dhcpsrv/dhcpsrv_messages.mes | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/lib/dhcpsrv/dhcpsrv_messages.mes b/src/lib/dhcpsrv/dhcpsrv_messages.mes index 0e5fcbf175..daa0b9e8d4 100644 --- a/src/lib/dhcpsrv/dhcpsrv_messages.mes +++ b/src/lib/dhcpsrv/dhcpsrv_messages.mes @@ -406,6 +406,11 @@ An informational message logged when multiple hosts from a CQL database are retr % DHCPSRV_CQL_LEASE_EXCEPTION_THROWN Exception thrown during Cassandra operation: %1 +% DHCPSRV_CQL_NO_TLS_SUPPORT Attempt to configure TLS (unsupported for CQL): %1 +This error message is printed when TLS support was required in the Kea +configuration: this feature is not supported for Cassandra/CQL. The +parameters of the connection are logged. + % DHCPSRV_CQL_ROLLBACK rolling back Cassandra database. The code has issued a rollback call. For Cassandra, this is a no-op. @@ -979,6 +984,10 @@ in the MySQL database returned a negative value. This shows a problem which can be fixed only by an offline direct recount on the database. This message is issued only once. +% DHCPSRV_MYSQL_NO_TLS TLS was required but is not used +This error message is issued when TLS for the connection was required but +TLS is not used. + % DHCPSRV_MYSQL_ROLLBACK rolling back MySQL database The code has issued a rollback call. All outstanding transaction will be rolled back and not committed to the database. @@ -992,6 +1001,10 @@ inserted into multiple tables with multiple INSERT statements and there may be a need to rollback the whole transaction if any of these INSERT statements fail. +% DHCPSRV_MYSQL_TLS_CIPHER TLS cipher: %1 +A debug message issued when a new MySQL connected is created with TLS. +The TLS cipher name is logged. + % DHCPSRV_MYSQL_UPDATE_ADDR4 updating IPv4 lease for address %1 A debug message issued when the server is attempting to update IPv4 lease from the MySQL database for the specified address. @@ -1203,6 +1216,11 @@ in the PostgreSQL database returned a negative value. This shows a problem which can be fixed only by an offline direct recount on the database. This message is issued only once. +% DHCPSRV_PGSQL_NO_TLS_SUPPORT Attempt to configure TLS (unsupported for PostgreSQL): %1 +This error message is printed when TLS support was required in the Kea +configuration: Kea was built with this feature was disabled for PostgreSQL. +The parameters of the connection are logged. + % DHCPSRV_PGSQL_ROLLBACK rolling back PostgreSQL database The code has issued a rollback call. All outstanding transaction will be rolled back and not committed to the database. @@ -1216,6 +1234,12 @@ inserted into multiple tables with multiple INSERT statements and there may be a need to rollback the whole transaction if any of these INSERT statements fail. +% DHCPSRV_PGSQL_TLS_SUPPORT Attempt to configure TLS: %1 +This informational message is printed when TLS support was required in +the Kea configuration: The TLS support in PostgreSQL will be initialized but +its configuration is fully managed outside the C API. +The parameters of the connection are logged. + % DHCPSRV_PGSQL_UPDATE_ADDR4 updating IPv4 lease for address %1 A debug message issued when the server is attempting to update IPv4 lease from the PostgreSQL database for the specified address. |