Patch - SSL back to working

Поиск
Список
Период
Сортировка
От Magnus Hagander
Тема Patch - SSL back to working
Дата
Msg-id 215896B6B5E1CF11BC5600805FFEA82103D97C60@sirius.edu.sollentuna.se
обсуждение исходный текст
Ответы Re: Patch - SSL back to working  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-patches
Here is a patch to bring SSL support back working. Sorry for the long delay
:-(

I also added the function sslinfo() to get information about the SSL
connection.
 (I'm not 100% sure I got that one right, though. Is it enough to put an
  entry in pg_proc.h, or do I need it anywhere else?
  Also, I picked "lowest oid in highest free block" - correct?)

Example of the function for non-SSL connection:
template1=# select sslinfo();
            sslinfo
-------------------------------
 SSL not active on connection.
(1 row)

Example of the function for SSL connection:
template1=# select sslinfo();
               sslinfo
-------------------------------------
 SSL cipher: DES-CBC3-SHA, bits: 168
(1 row)


//Magnus


Вложения

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

Предыдущее
От: Pete Forman
Дата:
Сообщение: Update tests/regress/resultmap for IRIX 6
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Patch - SSL back to working