Update of /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21326
Modified Files:
ClientRecordProtocol.cs
Log Message:
Fixed issue
Index: ClientRecordProtocol.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls/ClientRecordProtocol.cs,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** ClientRecordProtocol.cs 26 Apr 2004 09:18:45 -0000 1.9
--- ClientRecordProtocol.cs 30 Apr 2004 11:56:15 -0000 1.10
***************
*** 48,54 ****
public override void SendRecord(HandshakeType type)
{
! // Create the record message
HandshakeMessage msg = this.createClientHandshakeMessage(type);
!
DebugHelper.WriteLine(">>>> Write handshake record ({0}|{1})", context.Protocol, msg.ContentType);
--- 48,55 ----
public override void SendRecord(HandshakeType type)
{
! // Create and process the record message
HandshakeMessage msg = this.createClientHandshakeMessage(type);
! msg.Process();
!
DebugHelper.WriteLine(">>>> Write handshake record ({0}|{1})", context.Protocol, msg.ContentType);
|