summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2011-02-02 18:58:50 +0000
committerAlan Conway <aconway@apache.org>2011-02-02 18:58:50 +0000
commitbebbaafbf6bd7b5f19a6ddbc3c7f130721f5bea3 (patch)
tree322e01d25883323f8ed42edcefe98bdbc7cb72df /cpp/src
parent422e8b7bac602d8528c38b3075f7e08e8a2d6a55 (diff)
downloadqpid-python-bebbaafbf6bd7b5f19a6ddbc3c7f130721f5bea3.tar.gz
Fix missing QPID_COMMON_EXTERN in sys/Socket.h, causing windows build failure.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1066581 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/sys/Socket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/sys/Socket.h b/cpp/src/qpid/sys/Socket.h
index 855a8029cc..7d50afc59f 100644
--- a/cpp/src/qpid/sys/Socket.h
+++ b/cpp/src/qpid/sys/Socket.h
@@ -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;