diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-06-26 10:19:35 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-07-30 13:46:27 +0200 |
commit | 98efa76fe313f62f84b94cd1f46c913c221b41fe (patch) | |
tree | 692e3bbe61f94b7798339a956c73f845a3c18707 /doc/src | |
parent | ab87b8fedce3fa77ca0d684a42ecc055f189eb33 (diff) |
Add ssl_library preset parameter
This allows querying the SSL implementation used on the server side.
It's analogous to using PQsslAttribute(conn, "library") in libpq.
Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/config.sgml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 4d48d93305a..bee4afbe4e7 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -8401,6 +8401,22 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' </listitem> </varlistentry> + <varlistentry id="guc-ssl-library" xreflabel="ssl_library"> + <term><varname>ssl_library</varname> (<type>string</type>) + <indexterm> + <primary><varname>ssl_library</varname> configuration parameter</primary> + </indexterm> + </term> + <listitem> + <para> + Reports the name of the SSL library that this PostgreSQL server was + built with (even if SSL is not currently configured or in use on this + instance), for example <literal>OpenSSL</literal>, or an empty string + if none. + </para> + </listitem> + </varlistentry> + <varlistentry id="guc-wal-block-size" xreflabel="wal_block_size"> <term><varname>wal_block_size</varname> (<type>integer</type>) <indexterm> |