Update of /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls.Alerts
In directory sc8-pr-cvs1:/tmp/cvs-serv29386
Modified Files:
TlsAlert.cs TlsCloseNotifyAlert.cs
Log Message:
2003-11-23 Carlos Guzmán Álvarez <car...@te...>
* Mono.Security.Protocol.Tls/SslServerStream.cs:
- Added new SslServerStream class with empty methods.
* Mono.Security.Protocol.Tls.Handshake.Server:
- New directory with class definitions of handshake message classes
for the server implementation.
- Class names for server handshake messages are the same as for
client implementation.
* Mono.Security.Protocol.Tls/SslClientStream.cs:
- Throw exception in constrctors when the targetHost or the streams are invalid.
- Added correct exception throwing in read/write methods.
- Added initial implementation of BeginRead and EndRead methods.
* Mono.Security.Protocol.Tls.Handshake/TlsHandshakeMessage.cs:
- Added new constructor.
- Changed UpdateSession() method to Update() and replaced method
name in derived classes.
Index: TlsAlert.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls.Alerts/TlsAlert.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** TlsAlert.cs 14 Nov 2003 13:41:20 -0000 1.5
--- TlsAlert.cs 23 Nov 2003 12:51:54 -0000 1.6
***************
*** 101,105 ****
#region ABSTRACT_METHODS
! public abstract void UpdateSession();
#endregion
--- 101,105 ----
#region ABSTRACT_METHODS
! public abstract void Update();
#endregion
Index: TlsCloseNotifyAlert.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls.Alerts/TlsCloseNotifyAlert.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** TlsCloseNotifyAlert.cs 14 Nov 2003 13:41:20 -0000 1.2
--- TlsCloseNotifyAlert.cs 23 Nov 2003 12:51:54 -0000 1.3
***************
*** 37,41 ****
}
! public override void UpdateSession()
{
this.Context.ConnectionEnd = true;
--- 37,41 ----
}
! public override void Update()
{
this.Context.ConnectionEnd = true;
|