diff options
author | Andrew Stitcher <astitcher@apache.org> | 2010-01-21 06:20:45 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2010-01-21 06:20:45 +0000 |
commit | a1e1ffbbcc932fa965031376c4d17d8165ff46b7 (patch) | |
tree | 025d8af0ca3de1454656e36c459476a8b4b2b29d /qpid/cpp/src | |
parent | 5652e2320fff37e65989b6fa9649cc41668fdf85 (diff) | |
download | qpid-python-a1e1ffbbcc932fa965031376c4d17d8165ff46b7.tar.gz |
Small comment fix
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@901556 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r-- | qpid/cpp/src/qpid/sys/posix/SocketAddress.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/sys/posix/SocketAddress.cpp b/qpid/cpp/src/qpid/sys/posix/SocketAddress.cpp index cb44f8e41f..8f5f29d793 100644 --- a/qpid/cpp/src/qpid/sys/posix/SocketAddress.cpp +++ b/qpid/cpp/src/qpid/sys/posix/SocketAddress.cpp @@ -75,7 +75,7 @@ const ::addrinfo& getAddrInfo(const SocketAddress& sa) if (!sa.addrInfo) { ::addrinfo hints; ::memset(&hints, 0, sizeof(hints)); - hints.ai_family = AF_INET; // In order to allow AF_INET6 we'd have to change createTcp() as well + hints.ai_family = AF_INET; // Change this to support IPv6 hints.ai_socktype = SOCK_STREAM; const char* node = 0; |