Update of /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls
In directory sc8-pr-cvs1:/tmp/cvs-serv22846
Modified Files:
TlsProtocol.cs
Log Message:
Added changes for allow, in the future, the handshake layer
to work with SSL3 protocol
Index: TlsProtocol.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls/TlsProtocol.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TlsProtocol.cs 11 Oct 2003 10:04:20 -0000 1.1
--- TlsProtocol.cs 16 Oct 2003 14:25:30 -0000 1.2
***************
*** 30,34 ****
{
Tls1 = (0x03 << 8) | 0x01,
! // Ssl3 = (0x03 << 8) | 0x00
}
}
--- 30,34 ----
{
Tls1 = (0x03 << 8) | 0x01,
! Ssl3 = (0x03 << 8) | 0x00
}
}
|