From 90f9db2fcf8c55719f46853439bf41e0a1e82312 Mon Sep 17 00:00:00 2001 From: David Gee Date: Tue, 20 Feb 2018 15:44:57 +0000 Subject: [PATCH 1/2] Added IPv6 test node to README code --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c80297..47f5197 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,8 @@ Here is an example of how to use MultiPing in your own code: from multiping import MultiPing # Create a MultiPing object to test three hosts / addresses - mp = MultiPing(["8.8.8.8", "youtube.com", "127.0.0.1"]) + mp = MultiPing(["8.8.8.8", "youtube.com", "127.0.0.1" + "2001:4860:4860::8888"]) # Send the pings to those addresses mp.send() From 7c06bc4ad98287d3b1b20cbd4e96be0c32685f7c Mon Sep 17 00:00:00 2001 From: David Gee Date: Tue, 20 Feb 2018 15:46:11 +0000 Subject: [PATCH 2/2] Added IPv6 test node to bottom function in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 47f5197..d0d97e1 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ delivers results in a single and simple function call: from multiping import multi_ping - addrs = ["8.8.8.8", "youtube.com", "127.0.0.1"] + addrs = ["8.8.8.8", "youtube.com", "127.0.0.1", "2001:4860:4860::8888"] # Ping the addresses up to 4 times (initial ping + 3 retries), over the # course of 2 seconds. This means that for those addresses that do not