You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ch...@apache.org on 2011/12/07 15:43:14 UTC

svn commit: r1211458 - in /qpid/trunk/qpid/cpp/src: CMakeLists.txt cluster.cmake qpid/UrlArray.h

Author: chug
Date: Wed Dec  7 14:43:13 2011
New Revision: 1211458

URL: http://svn.apache.org/viewvc?rev=1211458&view=rev
Log:
QPID-3652 Fix cluster authentication

Add missing additions to CMakeLists.
Add windows export macro so new functions are published in dll.

Modified:
    qpid/trunk/qpid/cpp/src/CMakeLists.txt
    qpid/trunk/qpid/cpp/src/cluster.cmake
    qpid/trunk/qpid/cpp/src/qpid/UrlArray.h

Modified: qpid/trunk/qpid/cpp/src/CMakeLists.txt
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/CMakeLists.txt?rev=1211458&r1=1211457&r2=1211458&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/CMakeLists.txt (original)
+++ qpid/trunk/qpid/cpp/src/CMakeLists.txt Wed Dec  7 14:43:13 2011
@@ -784,6 +784,7 @@ set (qpidcommon_SOURCES
      qpid/SessionId.cpp
      qpid/StringUtils.cpp
      qpid/Url.cpp
+     qpid/UrlArray.cpp
      qpid/amqp_0_10/SessionHandler.cpp
      qpid/framing/AccumulatedAck.cpp
      qpid/framing/AMQBody.cpp

Modified: qpid/trunk/qpid/cpp/src/cluster.cmake
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/cluster.cmake?rev=1211458&r1=1211457&r2=1211458&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/cluster.cmake (original)
+++ qpid/trunk/qpid/cpp/src/cluster.cmake Wed Dec  7 14:43:13 2011
@@ -96,6 +96,8 @@ if (BUILD_CLUSTER)
        qpid/cluster/ConnectionCodec.h
        qpid/cluster/Cpg.cpp
        qpid/cluster/Cpg.h
+       qpid/cluster/CredentialsExchange.cpp
+       qpid/cluster/CredentialsExchange.h
        qpid/cluster/Dispatchable.h
        qpid/cluster/UpdateClient.cpp
        qpid/cluster/UpdateClient.h

Modified: qpid/trunk/qpid/cpp/src/qpid/UrlArray.h
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/UrlArray.h?rev=1211458&r1=1211457&r2=1211458&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/UrlArray.h (original)
+++ qpid/trunk/qpid/cpp/src/qpid/UrlArray.h Wed Dec  7 14:43:13 2011
@@ -30,8 +30,8 @@
 namespace qpid {
 
 /** @file Functions to encode/decode an array of URLs. */
-std::vector<Url> urlArrayToVector(const framing::Array& array);
-framing::Array vectorToUrlArray(const std::vector<Url>& urls);
+QPID_COMMON_EXTERN std::vector<Url> urlArrayToVector(const framing::Array& array);
+QPID_COMMON_EXTERN framing::Array vectorToUrlArray(const std::vector<Url>& urls);
 } // namespace qpid
 
-#endif  /*!QPID_CLUSTER_URLARRAY_H*/
+#endif  /* !QPID_CLUSTER_URLARRAY_H */



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org