postgresql/src/backend/libpq
Peter Eisentraut 44d1abebb4 Big warnings cleanup for Solaris/GCC. Down to about 40 now, but
we'll get there one day.

Use `cat' to create aclocal.m4, not `aclocal'. Some people don't
have automake installed.

Only run the autoconf rule in the top-level GNUmakefile if the
invoker specified `make configure', don't run it automatically
because of CVS timestamp skew.
2000-06-14 18:18:01 +00:00
..
Makefile Generated header files parse.h and fmgroids.h are now copied into 2000-05-29 05:45:56 +00:00
README.SSL Add README.SSL 1999-09-27 03:16:09 +00:00
auth.c Update kerberos patch 2000-05-27 04:13:05 +00:00
be-dumpdata.c Third round of fmgr updates: eliminate calls using fmgr() and 2000-05-30 04:25:00 +00:00
be-fsstubs.c Another round of updates for new fmgr, mostly in the datetime code. 2000-06-09 01:11:16 +00:00
be-pqexec.c First round of changes for new fmgr interface. fmgr itself and the 2000-05-28 17:56:29 +00:00
crypt.c Another round of updates for new fmgr, mostly in the datetime code. 2000-06-09 01:11:16 +00:00
hba.c Remove NT-specific file open defines by defining our own open macros for 2000-06-02 15:57:44 +00:00
password.c Remove NT-specific file open defines by defining our own open macros for 2000-06-02 15:57:44 +00:00
pg_hba.conf.sample Update pg_hba.conf with more examples 2000-05-30 17:39:56 +00:00
pg_ident.conf.sample Move YACC and YFLAGS into the template files 1997-04-04 11:23:15 +00:00
portal.c Fix a bunch of minor portability problems and maybe-bugs revealed by 2000-03-17 02:36:41 +00:00
portalbuf.c Ye-old pgindent run. Same 4-space tabs. 2000-04-12 17:17:23 +00:00
pqcomm.c Big warnings cleanup for Solaris/GCC. Down to about 40 now, but 2000-06-14 18:18:01 +00:00
pqformat.c Ye-old pgindent run. Same 4-space tabs. 2000-04-12 17:17:23 +00:00
pqpacket.c Ye-old pgindent run. Same 4-space tabs. 2000-04-12 17:17:23 +00:00
pqsignal.c Substituted new configure test for types of accept() 2000-06-11 11:40:09 +00:00
util.c Add: 2000-01-26 05:58:53 +00:00

README.SSL

>From the servers perspective:


  Receives StartupPacket
           |
           |
 (Is SSL_NEGOTIATE_CODE?) -----------  Normal startup
           |                  No
           |
           | Yes
           |
           |
 (Server compiled with USE_SSL?) ------- Send 'N'
           |                       No        |
           |                                 |
           | Yes                         Normal startup
           |
           |
        Send 'S'
           |
           |
      Establish SSL
           |
           |
      Normal startup
     




>From the clients perspective (v6.6 client _with_ SSL):


      Connect
         |
         |
  Send packet with SSL_NEGOTIATE_CODE
         |
         |
  Receive single char  ------- 'S' -------- Establish SSL
         |                                       |
         | '<else>'                              |
         |                                  Normal startup
         |
         |
   Is it 'E' for error  ------------------- Retry connection
         |                  Yes             without SSL
         | No
         |
   Is it 'N' for normal ------------------- Normal startup
         |                  Yes
         |
   Fail with unknown