[pgsqlclient-checkins] pgsqlclient_10/PgSqlClient.Security.Tls/source/Alerts TlsAlert.cs,1.2,1.3 Tls
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-09-01 10:22:15
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PgSqlClient.Security.Tls/source/Alerts In directory sc8-pr-cvs1:/tmp/cvs-serv16379 Modified Files: TlsAlert.cs TlsCloseNotifyAlert.cs TlsWarningAlertEventArgs.cs Log Message: - Changed namespace name to a more standard name. - Changed the way for use TLS readers and writers, now the TlsSession class handles the socket used for connect to a server. - Improvements to TlsWriter class for better handling of application data records. Index: TlsAlert.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PgSqlClient.Security.Tls/source/Alerts/TlsAlert.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsAlert.cs 25 Aug 2003 10:22:36 -0000 1.2 --- TlsAlert.cs 1 Sep 2003 10:22:05 -0000 1.3 *************** *** 19,25 **** using System; ! using PgSqlClient.Security.TLS; ! namespace PgSqlClient.Security.TLS.Alerts { #region ENUMS --- 19,25 ---- using System; ! using System.Security.Tls; ! namespace System.Security.Tls.Alerts { #region ENUMS Index: TlsCloseNotifyAlert.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PgSqlClient.Security.Tls/source/Alerts/TlsCloseNotifyAlert.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsCloseNotifyAlert.cs 25 Aug 2003 10:22:36 -0000 1.2 --- TlsCloseNotifyAlert.cs 1 Sep 2003 10:22:05 -0000 1.3 *************** *** 19,25 **** using System; ! using PgSqlClient.Security.TLS; ! namespace PgSqlClient.Security.TLS.Alerts { internal class TlsCloseNotifyAlert : TlsAlert --- 19,25 ---- using System; ! using System.Security.Tls; ! namespace System.Security.Tls.Alerts { internal class TlsCloseNotifyAlert : TlsAlert Index: TlsWarningAlertEventArgs.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PgSqlClient.Security.Tls/source/Alerts/TlsWarningAlertEventArgs.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsWarningAlertEventArgs.cs 25 Aug 2003 10:22:36 -0000 1.2 --- TlsWarningAlertEventArgs.cs 1 Sep 2003 10:22:05 -0000 1.3 *************** *** 19,23 **** using System; ! namespace PgSqlClient.Security.TLS.Alerts { public delegate void TlsWarningAlertEventHandler(object sender, TlsWarningAlertEventArgs e); --- 19,23 ---- using System; ! namespace System.Security.Tls.Alerts { public delegate void TlsWarningAlertEventHandler(object sender, TlsWarningAlertEventArgs e); |