postgresql/src/backend/libpq
2000-06-02 15:57:44 +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 Remove NT-specific file open defines by defining our own open macros for 2000-06-02 15:57:44 +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 Remove NT-specific file open defines by defining our own open macros for 2000-06-02 15:57:44 +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
Makefile Generated header files parse.h and fmgroids.h are now copied into 2000-05-29 05:45:56 +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 Remove NT-specific file open defines by defining our own open macros for 2000-06-02 15:57:44 +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 Add: 2000-01-26 05:58:53 +00:00
README.SSL Add README.SSL 1999-09-27 03:16:09 +00:00
util.c Add: 2000-01-26 05:58:53 +00:00

>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