Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 483363b

Browse files
committed
Fix longstanding thinko in SSL protocol documentation: the server's
initial response is 'S', not 'Y', when it is willing to do SSL.
1 parent 4529d2c commit 483363b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/sgml/protocol.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/protocol.sgml,v 1.40 2003/08/13 18:56:21 tgl Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/protocol.sgml,v 1.41 2003/08/14 20:09:31 tgl Exp $ -->
22

33
<chapter id="protocol">
44
<title>Frontend/Backend Protocol</title>
@@ -1151,10 +1151,10 @@
11511151
<para>
11521152
To initiate an SSL-encrypted connection, the frontend initially sends
11531153
an SSLRequest message rather than a StartupMessage. The server then
1154-
responds with a single byte containing <literal>Y</> or <literal>N</>,
1154+
responds with a single byte containing <literal>S</> or <literal>N</>,
11551155
indicating that it is willing or unwilling to perform SSL, respectively.
11561156
The frontend may close the connection at this point if it is dissatisfied
1157-
with the response. To continue after <literal>Y</>, perform an SSL
1157+
with the response. To continue after <literal>S</>, perform an SSL
11581158
startup handshake (not described here, part of the SSL specification)
11591159
with the server. If this is successful, continue with
11601160
sending the usual StartupMessage. In this case the StartupMessage and

0 commit comments

Comments
 (0)