summaryrefslogtreecommitdiffhomepage
path: root/test/iptables/iptables.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/iptables/iptables.go')
-rw-r--r--test/iptables/iptables.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/iptables/iptables.go b/test/iptables/iptables.go
index 16cb4f4da..dfbd80cd1 100644
--- a/test/iptables/iptables.go
+++ b/test/iptables/iptables.go
@@ -40,10 +40,10 @@ type TestCase interface {
// ContainerAction runs inside the container. It receives the IP of the
// local process.
- ContainerAction(ip net.IP) error
+ ContainerAction(ip net.IP, ipv6 bool) error
// LocalAction runs locally. It receives the IP of the container.
- LocalAction(ip net.IP) error
+ LocalAction(ip net.IP, ipv6 bool) error
}
// Tests maps test names to TestCase.