[pgsqlclient-checkins] pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient PgDataType.cs,1.2
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-10-25 21:00:46
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient In directory sc8-pr-cvs1:/tmp/cvs-serv18915 Modified Files: PgDataType.cs PgDbClient.cs Log Message: * source/NPgClient/PgDataType.cs: - Changed visibility level to internal Index: PgDataType.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient/PgDataType.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PgDataType.cs 18 Oct 2003 19:14:43 -0000 1.2 --- PgDataType.cs 25 Oct 2003 20:52:53 -0000 1.3 *************** *** 24,28 **** // allow a better and more simple handling of // data types in the protocol implementation. ! public enum PgDataType { Array , --- 24,28 ---- // allow a better and more simple handling of // data types in the protocol implementation. ! internal enum PgDataType { Array , Index: PgDbClient.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient/PgDbClient.cs,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** PgDbClient.cs 19 Oct 2003 14:08:22 -0000 1.27 --- PgDbClient.cs 25 Oct 2003 20:52:53 -0000 1.28 *************** *** 143,149 **** TlsSessionSettings tlsSettings = new TlsSessionSettings(); ! tlsSettings.Protocol = TlsProtocol.Tls1; ! tlsSettings.ServerName = settings.ServerName; ! tlsSettings.ServerPort = settings.ServerPort; // Create a new TLS Session --- 143,150 ---- TlsSessionSettings tlsSettings = new TlsSessionSettings(); ! tlsSettings.Protocol = TlsProtocol.Tls1; ! tlsSettings.CompressionMethod = TlsCompressionMethod.None; ! tlsSettings.ServerName = settings.ServerName; ! tlsSettings.ServerPort = settings.ServerPort; // Create a new TLS Session |