diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2009-10-09 03:38:09 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2009-10-09 03:38:09 +0000 |
| commit | 38af3e10a6467dd741ad9187af7d16a7f1af53b4 (patch) | |
| tree | d0efc44dc16fdfea0a0d5795d4afc94ecfd943a0 /qpid/cpp/include | |
| parent | 1aa5bf92230715e45a5de52d7bb45da7f2ea8a33 (diff) | |
| download | qpid-python-38af3e10a6467dd741ad9187af7d16a7f1af53b4.tar.gz | |
Split responsibility for name lookup in AsynchConnector::connect
into new SocketAddress class.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@823390 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
| -rw-r--r-- | qpid/cpp/include/qpid/sys/posix/PrivatePosix.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qpid/cpp/include/qpid/sys/posix/PrivatePosix.h b/qpid/cpp/include/qpid/sys/posix/PrivatePosix.h index 6ffd3d8383..79cb950275 100644 --- a/qpid/cpp/include/qpid/sys/posix/PrivatePosix.h +++ b/qpid/cpp/include/qpid/sys/posix/PrivatePosix.h @@ -27,6 +27,7 @@ struct timespec; struct timeval; +struct addrinfo; namespace qpid { namespace sys { @@ -36,6 +37,10 @@ struct timespec& toTimespec(struct timespec& ts, const Duration& t); struct timeval& toTimeval(struct timeval& tv, const Duration& t); Duration toTime(const struct timespec& ts); +// Private SocketAddress details +class SocketAddress; +const struct addrinfo& getAddrInfo(const SocketAddress&); + // Private fd related implementation details class IOHandlePrivate { public: |
