diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-21 05:05:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-21 05:05:20 +0000 |
commit | a14b88819a8a22da4f5abb19a3b1b61aebb10a7c (patch) | |
tree | 45f36cde15c9ff8c45d9efbaa7b02426ca984121 /doc/src/sgml/libpq.sgml | |
parent | Adding debian version 15.6-0+deb12u1. (diff) | |
download | postgresql-15-a14b88819a8a22da4f5abb19a3b1b61aebb10a7c.tar.xz postgresql-15-a14b88819a8a22da4f5abb19a3b1b61aebb10a7c.zip |
Merging upstream version 15.7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'doc/src/sgml/libpq.sgml')
-rw-r--r-- | doc/src/sgml/libpq.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 8b51d9e..997ae4f 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -873,7 +873,7 @@ PQsslKeyPassHook_OpenSSL_type PQgetSSLKeyPassHook_OpenSSL(void); connection parameters. There are two accepted formats for these strings: plain keyword/value strings and URIs. URIs generally follow - <ulink url="https://tools.ietf.org/html/rfc3986">RFC + <ulink url="https://datatracker.ietf.org/doc/html/rfc3986">RFC 3986</ulink>, except that multi-host connection strings are allowed as further described below. </para> @@ -958,7 +958,7 @@ postgresql:///mydb?host=localhost&port=5433 <para> The connection <acronym>URI</acronym> needs to be encoded with <ulink - url="https://tools.ietf.org/html/rfc3986#section-2.1">percent-encoding</ulink> + url="https://datatracker.ietf.org/doc/html/rfc3986#section-2.1">percent-encoding</ulink> if it includes symbols with special meaning in any of its parts. Here is an example where the equal sign (<literal>=</literal>) is replaced with <literal>%3D</literal> and the space character with @@ -8236,7 +8236,7 @@ user=admin LDAP query will be performed. The result must be a list of <literal>keyword = value</literal> pairs which will be used to set connection options. The URL must conform to - <ulink url="https://tools.ietf.org/html/rfc1959">RFC 1959</ulink> + <ulink url="https://datatracker.ietf.org/doc/html/rfc1959">RFC 1959</ulink> and be of the form <synopsis> ldap://[<replaceable>hostname</replaceable>[:<replaceable>port</replaceable>]]/<replaceable>search_base</replaceable>?<replaceable>attribute</replaceable>?<replaceable>search_scope</replaceable>?<replaceable>filter</replaceable> @@ -8380,7 +8380,7 @@ ldap://ldap.acme.com/cn=dbserver,cn=hosts?pgconnectinfo?base?(objectclass=*) <para> For backward compatibility with earlier versions of PostgreSQL, the host IP address is verified in a manner different - from <ulink url="https://tools.ietf.org/html/rfc6125">RFC 6125</ulink>. + from <ulink url="https://datatracker.ietf.org/doc/html/rfc6125">RFC 6125</ulink>. The host IP address is always matched against <literal>dNSName</literal> SANs as well as <literal>iPAddress</literal> SANs, and can be matched against the Common Name attribute if no relevant SANs exist. |