diff options
author | Andrew Stitcher <astitcher@apache.org> | 2011-08-12 22:32:05 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2011-08-12 22:32:05 +0000 |
commit | bd46aa4383ca0a04563c80dc527cf005a2a335ad (patch) | |
tree | 830377f702f2febe2fa9f069bbec3dc735a6b09c /qpid/cpp/src/tests/cluster_test_logs.py | |
parent | cc04bc3a1cdcb4100b612e589a21d850b809d4ce (diff) | |
download | qpid-python-bd46aa4383ca0a04563c80dc527cf005a2a335ad.tar.gz |
QPID-3405: IPv6 support for Unix C++ ports:
- On the Listen side we create separate listening sockets for IPv4 and IPv6
making sure to not allow the IPv6 socket to run dual stack. This makes the
reported IPv4 addresses look "normal" and would allow us to turn control
IPv4/IPv6 listening separately.
- On the connect side we make sure to try all the addresses returned by
getaddrinfo() in order until we either find one that connects or have
tried all of them.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1157272 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/cluster_test_logs.py')
-rwxr-xr-x | qpid/cpp/src/tests/cluster_test_logs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/src/tests/cluster_test_logs.py b/qpid/cpp/src/tests/cluster_test_logs.py index a0ce8fb9c3..3c7e8e8020 100755 --- a/qpid/cpp/src/tests/cluster_test_logs.py +++ b/qpid/cpp/src/tests/cluster_test_logs.py @@ -53,6 +53,7 @@ def filter_log(log): 'stall for update|unstall, ignore update|cancelled offer .* unstall', 'caught up', 'active for links|Passivating links|Activating links', + 'info Connecting: .*', # UpdateClient connection 'info Connection.* connected to', # UpdateClient connection 'warning Connection \\[[-0-9.: ]+\\] closed', # UpdateClient connection 'warning Broker closed connection: 200, OK', |