Return-Path: X-Original-To: apmail-qpid-commits-archive@www.apache.org Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A0654101B7 for ; Wed, 28 Aug 2013 17:03:42 +0000 (UTC) Received: (qmail 48247 invoked by uid 500); 28 Aug 2013 17:03:42 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 48184 invoked by uid 500); 28 Aug 2013 17:03:39 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 48176 invoked by uid 99); 28 Aug 2013 17:03:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Aug 2013 17:03:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Aug 2013 17:03:37 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id AF9C123888A6; Wed, 28 Aug 2013 17:03:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1518285 - /qpid/trunk/qpid/cpp/src/qpid/client/windows/SaslFactory.cpp Date: Wed, 28 Aug 2013 17:03:17 -0000 To: commits@qpid.apache.org From: chug@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130828170317.AF9C123888A6@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chug Date: Wed Aug 28 17:03:16 2013 New Revision: 1518285 URL: http://svn.apache.org/r1518285 Log: QPID-5101: C++ Broker Windows missing SaslFactory::createServer for AMQP 1.0 Modified: qpid/trunk/qpid/cpp/src/qpid/client/windows/SaslFactory.cpp Modified: qpid/trunk/qpid/cpp/src/qpid/client/windows/SaslFactory.cpp URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/client/windows/SaslFactory.cpp?rev=1518285&r1=1518284&r2=1518285&view=diff ============================================================================== --- qpid/trunk/qpid/cpp/src/qpid/client/windows/SaslFactory.cpp (original) +++ qpid/trunk/qpid/cpp/src/qpid/client/windows/SaslFactory.cpp Wed Aug 28 17:03:16 2013 @@ -26,6 +26,7 @@ #include "qpid/sys/SecurityLayer.h" #include "qpid/sys/SecuritySettings.h" #include "qpid/log/Statement.h" +#include "qpid/NullSaslServer.h" #include "boost/tokenizer.hpp" @@ -107,6 +108,12 @@ std::auto_ptr SaslFactory::create( return sasl; } +std::auto_ptr SaslFactory::createServer( const std::string& realm, bool /*encryptionRequired*/, const qpid::sys::SecuritySettings& ) +{ + std::auto_ptr server(new NullSaslServer(realm)); + return server; +} + namespace { const std::string ANONYMOUS = "ANONYMOUS"; const std::string PLAIN = "PLAIN"; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org