From 401aad67045b2d467571b54abe229fdd115a228c Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Thu, 30 Apr 2020 13:39:10 +0900 Subject: Rename connection parameters to control min/max SSL protocol version in libpq The libpq parameters ssl{max|min}protocolversion are renamed to use underscores, to become ssl_{max|min}_protocol_version. The related environment variables still use the names introduced in commit ff8ca5f that added the feature. Per complaint from Peter Eisentraut (this was also mentioned by me in the original patch review but the issue got discarded). Author: Daniel Gustafsson Reviewed-by: Peter Eisentraut, Michael Paquier Discussion: https://postgr.es/m/b319e449-318d-e691-4997-1327e166fcc4@2ndquadrant.com --- doc/src/sgml/libpq.sgml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 75d2224a61b..5ddb4c28bde 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -1736,8 +1736,8 @@ postgresql://%2Fvar%2Flib%2Fpostgresql/dbname - - sslminprotocolversion + + ssl_min_protocol_version This parameter specifies the minimum SSL/TLS protocol version to allow @@ -1752,8 +1752,8 @@ postgresql://%2Fvar%2Flib%2Fpostgresql/dbname - - sslmaxprotocolversion + + ssl_max_protocol_version This parameter specifies the maximum SSL/TLS protocol version to allow @@ -7164,7 +7164,7 @@ myEventProc(PGEventId evtId, void *evtInfo, void *passThrough) PGSSLMINPROTOCOLVERSION PGSSLMINPROTOCOLVERSION behaves the same as the connection parameter. + linkend="libpq-connect-ssl-min-protocol-version"/> connection parameter. @@ -7174,7 +7174,7 @@ myEventProc(PGEventId evtId, void *evtInfo, void *passThrough) PGSSLMAXPROTOCOLVERSION PGSSLMAXPROTOCOLVERSION behaves the same as the connection parameter. + linkend="libpq-connect-ssl-min-protocol-version"/> connection parameter. -- cgit v1.2.3