You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/src/backend/libpq
Tom Lane 58422dd0af Several calls to StrNCpy incorrectly subtracted 1 from the length arg, 26 years ago
..
Makefile Removed MBFLAGS from makefiles since it's now done in include/config.h. 26 years ago
README.SSL Add README.SSL 27 years ago
auth.c Add: 26 years ago
be-dumpdata.c Add: 26 years ago
be-fsstubs.c Add: 26 years ago
be-pqexec.c Fix a bunch of minor portability problems and maybe-bugs revealed by 26 years ago
crypt.c Move some system includes into c.h, and remove duplicates. 27 years ago
hba.c Fix a bunch of minor portability problems and maybe-bugs revealed by 26 years ago
password.c Add: 26 years ago
pg_hba.conf.sample Lots of patches coming in from me today :-) 27 years ago
pg_ident.conf.sample
portal.c Fix a bunch of minor portability problems and maybe-bugs revealed by 26 years ago
portalbuf.c Fix a bunch of minor portability problems and maybe-bugs revealed by 26 years ago
pqcomm.c Add: 26 years ago
pqformat.c Add: 26 years ago
pqpacket.c Several calls to StrNCpy incorrectly subtracted 1 from the length arg, 26 years ago
pqsignal.c Add: 26 years ago
util.c Add: 26 years ago

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