summaryrefslogtreecommitdiff
path: root/qpid/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
commitd2fe84700e85b9d19a3c805a426a28d40add9bde (patch)
tree9e008f25ddb6dd9d0de51c266910926220c6d4e8 /qpid/cpp/src
parentc7740b10d0b4fe5fe1b4fbabf6804ca815d1ebea (diff)
downloadqpid-python-d2fe84700e85b9d19a3c805a426a28d40add9bde.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@1066581 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/sys/Socket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/sys/Socket.h b/qpid/cpp/src/qpid/sys/Socket.h
index 855a8029cc..7d50afc59f 100644
--- a/qpid/cpp/src/qpid/sys/Socket.h
+++ b/qpid/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;