Re: pgsql: libq support for sslpassword connection param, DERformat keys

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема Re: pgsql: libq support for sslpassword connection param, DERformat keys
Дата
Msg-id 20191201040429.GM2355@paquier.xyz
обсуждение исходный текст
Ответ на pgsql: libq support for sslpassword connection param, DER format keys  (Andrew Dunstan <andrew@dunslane.net>)
Ответы Re: pgsql: libq support for sslpassword connection param, DER formatkeys  (Andrew Dunstan <andrew.dunstan@2ndquadrant.com>)
Список pgsql-committers
Andrew,

On Sat, Nov 30, 2019 at 08:45:25PM +0000, Andrew Dunstan wrote:
> libq support for sslpassword connection param,  DER format keys
>
> This patch providies for support for password protected SSL client
> keys in libpq, and for DER format keys, both encrypted and unencrypted.
> There is a new connection parameter sslpassword, which is supplied to
> the OpenSSL libraries via a callback function. The callback function can
> also be set by an application by calling PQgetSSLKeyPassHook(). There is
> also a function to retreive the connection setting, PQsslpassword().

Windows build is broken after this commit at link time on most animals:
  libpqdll.def : error LNK2001: unresolved external symbol
  PQdefaultSSLKeyPassHook
  [C:\buildfarm\buildenv\HEAD\pgsql.build\libpq.vcxproj]
    libpqdll.def : error LNK2001: unresolved external symbol
  PQgetSSLKeyPassHook
  [C:\buildfarm\buildenv\HEAD\pgsql.build\libpq.vcxproj]
    libpqdll.def : error LNK2001: unresolved external symbol
  PQsetSSLKeyPassHook [C:\buildfarm\buildenv\HEAD\pgsql.build\libpq.vcxproj]

I have not checked the build, but it seems like the indentation in
exports.txt is not right.  Your patch has added tabs for the new
entries, but spaces have been used up to now.
--
Michael

Вложения

В списке pgsql-committers по дате отправления:

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: pgsql: libq support for sslpassword connection param, DER format keys
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix misbehavior with expression indexes on ON COMMIT DELETE ROWS