From 88fd894652067d48d9b1988d36ee081ae46f365f Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Mon, 14 Apr 2008 13:57:36 +0000 Subject: QPID-648: keep the sasl_conn member in the handler to avoid the need for friend declaration git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@647800 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/broker/PreviewConnection.cpp | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'cpp/src/qpid/broker/PreviewConnection.cpp') diff --git a/cpp/src/qpid/broker/PreviewConnection.cpp b/cpp/src/qpid/broker/PreviewConnection.cpp index 6f411c99d6..56de374b4d 100644 --- a/cpp/src/qpid/broker/PreviewConnection.cpp +++ b/cpp/src/qpid/broker/PreviewConnection.cpp @@ -39,10 +39,6 @@ #include #include -#if HAVE_SASL -#include -#endif - using namespace boost; using namespace qpid::sys; using namespace qpid::framing; @@ -94,9 +90,6 @@ public: PreviewConnection::PreviewConnection(ConnectionOutputHandler* out_, Broker& broker_, const std::string& mgmtId_, bool isLink) : ConnectionState(out_, broker_), -#if HAVE_SASL - sasl_conn(NULL), -#endif adapter(*this, isLink), mgmtClosing(false), mgmtId(mgmtId_) @@ -119,12 +112,6 @@ PreviewConnection::PreviewConnection(ConnectionOutputHandler* out_, Broker& brok } PreviewConnection::~PreviewConnection () { -#if HAVE_LIBSASL2 - if (NULL != sasl_conn) { - sasl_dispose(&sasl_conn); - sasl_conn = NULL; - } -#endif } void PreviewConnection::received(framing::AMQFrame& frame){ -- cgit v1.2.1