diff options
author | Kevin Krakauer <krakauer@google.com> | 2020-01-08 14:48:47 -0800 |
---|---|---|
committer | Kevin Krakauer <krakauer@google.com> | 2020-01-08 14:48:47 -0800 |
commit | b2a881784c8e525c1fea71c6f23663413d107f05 (patch) | |
tree | 6529dc74dcf1fc21d0b3199f149356cb877f5ddc /test | |
parent | 447f64c561e6b5893c1bbae7d641187b7aca64ac (diff) |
Built dead-simple traversal, but now getting depedency cycle error :'(
Diffstat (limited to 'test')
-rw-r--r-- | test/iptables/filter_input.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/iptables/filter_input.go b/test/iptables/filter_input.go index 1723a4d3e..7c4d469fa 100644 --- a/test/iptables/filter_input.go +++ b/test/iptables/filter_input.go @@ -138,7 +138,7 @@ func (FilterInputDropAll) ContainerAction(ip net.IP) error { return err } - // Listen for All packets on dropPort. + // Listen for all packets on dropPort. if err := listenUDP(dropPort, sendloopDuration); err == nil { return fmt.Errorf("packets should have been dropped, but got a packet") } else if netErr, ok := err.(net.Error); !ok || !netErr.Timeout() { |