diff options
author | Bruce Momjian <bruce@momjian.us> | 2008-11-04 22:36:07 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2008-11-04 22:36:07 +0000 |
commit | c227ccc2f739828d87721d76cae66d073679b2e3 (patch) | |
tree | a75f74666e5091e792e7240042972015c5447fff | |
parent | b6cb3d0c06a0f7df3719c906401ded4d9c2ed830 (diff) | |
download | postgresql-c227ccc2f739828d87721d76cae66d073679b2e3.tar.gz postgresql-c227ccc2f739828d87721d76cae66d073679b2e3.zip |
Document that 'sslmode' is ignored for Unix domain socket communication;
backpatch to 8.3.X.
-rw-r--r-- | doc/src/sgml/libpq.sgml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 0aa134f4cde..d0a0284e877 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.266 2008/10/27 09:42:31 mha Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.267 2008/11/04 22:36:07 momjian Exp $ --> <chapter id="libpq"> <title><application>libpq</application> - C Library</title> @@ -233,8 +233,8 @@ <term><literal>sslmode</literal></term> <listitem> <para> - This option determines whether or with what priority an - <acronym>SSL</> connection will be negotiated with the + This option determines whether or with what priority a + <acronym>SSL</> TCP/IP connection will be negotiated with the server. There are four modes: <literal>disable</> will attempt only an unencrypted <acronym>SSL</> connection; <literal>allow</> will negotiate, trying first a @@ -243,7 +243,8 @@ will negotiate, trying first an <acronym>SSL</> connection, then if that fails, trying a regular non-<acronym>SSL</> connection; <literal>require</> will try only an - <acronym>SSL</> connection. + <acronym>SSL</> connection. <literal>sslmode</> is ignored + for Unix domain socket communication. </para> <para> |