| From: | Magnus Hagander <mha(at)sollentuna(dot)net> |
|---|---|
| To: | |
| Cc: | "'pgsql-patches(at)postgresql(dot)org'" <pgsql-patches(at)postgresql(dot)org> |
| Subject: | Patch - SSL back to working |
| Date: | 2000-08-19 15:25:11 |
| Message-ID: | 215896B6B5E1CF11BC5600805FFEA82103D97C60@sirius.edu.sollentuna.se |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers 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
| Attachment | Content-Type | Size |
|---|---|---|
| ssl_patch | application/octet-stream | 9.7 KB |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2000-08-19 20:25:44 | Re: Patch - SSL back to working |
| Previous Message | David Lloyd-Jones | 2000-08-19 12:05:32 | Re: VACUUM optimization ideas. |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2000-08-19 20:25:44 | Re: Patch - SSL back to working |
| Previous Message | Pete Forman | 2000-08-18 09:51:03 | Update tests/regress/resultmap for IRIX 6 |