Revision: 64
Author: carlosga_fb
Date: 2006-03-28 04:50:37 -0800 (Tue, 28 Mar 2006)
ViewCVS: http://svn.sourceforge.net/pgsqlclient/?rev=64&view=rev
Log Message:
-----------
Modified Paths:
--------------
trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgConnectionOptions.cs
trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgDatabase.cs
Modified: trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgConnectionOptions.cs
===================================================================
--- trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgConnectionOptions.cs 2006-03-28 12:34:28 UTC (rev 63)
+++ trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgConnectionOptions.cs 2006-03-28 12:50:37 UTC (rev 64)
@@ -15,7 +15,6 @@
* All Rights Reserved.
*/
-
using System;
using System.Text;
using System.Text.RegularExpressions;
@@ -38,6 +37,7 @@
private int maxPoolSize;
private bool pooling;
private bool ssl;
+ private bool useCustomSsl;
#endregion
@@ -99,12 +99,12 @@
get { return this.pooling; }
}
- public bool SSL
+ public bool Ssl
{
get { return this.ssl; }
}
- #endregion
+ #endregion
#region \xB7 Constructors \xB7
@@ -135,6 +135,8 @@
this.connectionLifetime = 0;
this.minPoolSize = 0;
this.maxPoolSize = 100;
+ this.ssl = false;
+ this.useCustomSsl = false;
}
private void ParseConnectionString(string connectionString)
Modified: trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgDatabase.cs
===================================================================
--- trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgDatabase.cs 2006-03-28 12:34:28 UTC (rev 63)
+++ trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgDatabase.cs 2006-03-28 12:50:37 UTC (rev 64)
@@ -271,7 +271,7 @@
lock (this)
{
- if (this.options.SSL)
+ if (this.options.Ssl)
{
// Send SSL request message
if (this.SslRequest())
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|