Index: trunk/BNC/bncnetqueryv2.cpp
===================================================================
--- trunk/BNC/bncnetqueryv2.cpp	(revision 3331)
+++ trunk/BNC/bncnetqueryv2.cpp	(revision 3332)
@@ -135,4 +135,6 @@
   connect(_reply, SIGNAL(finished()), this, SLOT(slotFinished()));
   connect(_reply, SIGNAL(finished()), _eventLoop, SLOT(quit()));
+  connect(_reply, SIGNAL(sslErrors(QList<QSslError>)),
+          this, SLOT(slotSslErrors(QList<QSslError>)));
   if (!full) {
     connect(_reply, SIGNAL(readyRead()), _eventLoop, SLOT(quit()));
@@ -180,2 +182,9 @@
 }
 
+// TSL/SSL 
+////////////////////////////////////////////////////////////////////////////
+void bncNetQueryV2::slotSslErrors(QList<QSslError>) {
+
+  std::cout << "slotSslErrors" << std::endl;
+  _reply->ignoreSslErrors();
+}
Index: trunk/BNC/bncnetqueryv2.h
===================================================================
--- trunk/BNC/bncnetqueryv2.h	(revision 3331)
+++ trunk/BNC/bncnetqueryv2.h	(revision 3332)
@@ -19,4 +19,5 @@
   void slotFinished();
   void slotProxyAuthenticationRequired(const QNetworkProxy&, QAuthenticator*);
+  void slotSslErrors(QList<QSslError>);
 
  private:
