[pgsqlclient-checkins] pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handsha
Status: Inactive
Brought to you by:
carlosga_fb
From: Carlos Guzm?n ?l. <car...@us...> - 2004-04-26 09:20:03
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26771 Modified Files: HandshakeMessage.cs Log Message: * Mono.Security.Protocol.Tls.Handshake/HandshakeMessage.cs: - Changes for fix FxCop Rules. Index: HandshakeMessage.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake/HandshakeMessage.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** HandshakeMessage.cs 4 Mar 2004 15:38:03 -0000 1.2 --- HandshakeMessage.cs 26 Apr 2004 09:19:39 -0000 1.3 *************** *** 73,79 **** this.handshakeType = handshakeType; this.contentType = contentType; - - // Process message - this.process(); } --- 73,76 ---- *************** *** 81,91 **** Context context, HandshakeType handshakeType, ! byte[] data) : base(data) { this.context = context; ! this.handshakeType = handshakeType; ! ! // Process message ! this.process(); } --- 78,85 ---- Context context, HandshakeType handshakeType, ! byte[] data) : base(data) { this.context = context; ! this.handshakeType = handshakeType; } *************** *** 102,106 **** #region Methods ! private void process() { switch (this.Context.SecurityProtocol) --- 96,100 ---- #region Methods ! public void Process() { switch (this.Context.SecurityProtocol) |