You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2011/02/02 19:58:50 UTC

svn commit: r1066581 - /qpid/trunk/qpid/cpp/src/qpid/sys/Socket.h

Author: aconway
Date: Wed Feb  2 18:58:50 2011
New Revision: 1066581

URL: http://svn.apache.org/viewvc?rev=1066581&view=rev
Log:
Fix missing QPID_COMMON_EXTERN in sys/Socket.h, causing windows build failure.

Modified:
    qpid/trunk/qpid/cpp/src/qpid/sys/Socket.h

Modified: qpid/trunk/qpid/cpp/src/qpid/sys/Socket.h
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/sys/Socket.h?rev=1066581&r1=1066580&r2=1066581&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/sys/Socket.h (original)
+++ qpid/trunk/qpid/cpp/src/qpid/sys/Socket.h Wed Feb  2 18:58:50 2011
@@ -79,12 +79,12 @@ public:
      * Returns an address (host and port) for the local end of the
      * socket
      */
-    std::string getLocalAddress() const;
+    QPID_COMMON_EXTERN std::string getLocalAddress() const;
 
     /**
      * Returns the full address of the connection: local and remote host and port.
      */
-    std::string getFullAddress() const { return getLocalAddress()+"-"+getPeerAddress(); }
+    QPID_COMMON_EXTERN std::string getFullAddress() const { return getLocalAddress()+"-"+getPeerAddress(); }
 
     QPID_COMMON_EXTERN uint16_t getLocalPort() const;
     uint16_t getRemotePort() const;



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