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 | b65797c5d8cb8a026c5f171bbbeff8afc321d2d7 (patch) | |
| tree | b39c4e95d2bb042709cb760f7cb13990cae91d96 /cpp | |
| parent | dc8062b20050b9dca14536ace687e95450a3e67b (diff) | |
| download | qpid-python-b65797c5d8cb8a026c5f171bbbeff8afc321d2d7.tar.gz | |
Small comment fix
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@901556 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
| -rw-r--r-- | cpp/src/qpid/sys/posix/SocketAddress.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/posix/SocketAddress.cpp b/cpp/src/qpid/sys/posix/SocketAddress.cpp index cb44f8e41f..8f5f29d793 100644 --- a/cpp/src/qpid/sys/posix/SocketAddress.cpp +++ b/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; |
