diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-02-18 11:41:54 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-02-18 11:41:54 -0800 |
commit | 7fdb609b3ee80e2d245ba4c76f97077b5a765073 (patch) | |
tree | bba8c95b64f97c49c07befc9a35da8f5dd24aa6e /test/iptables/iptables_util.go | |
parent | fae3de21af7f50266565643c6283912b087b0f5a (diff) | |
parent | 6ef63cd7da107d487fda7c48af50fa9802913cd9 (diff) |
Merge pull request #1850 from kevinGC:jump2
PiperOrigin-RevId: 295785052
Diffstat (limited to 'test/iptables/iptables_util.go')
-rw-r--r-- | test/iptables/iptables_util.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/iptables/iptables_util.go b/test/iptables/iptables_util.go index 043114c78..293c4e6ed 100644 --- a/test/iptables/iptables_util.go +++ b/test/iptables/iptables_util.go @@ -35,6 +35,16 @@ func filterTable(args ...string) error { return nil } +// filterTableRules is like filterTable, but runs multiple iptables commands. +func filterTableRules(argsList [][]string) error { + for _, args := range argsList { + if err := filterTable(args...); err != nil { + return err + } + } + return nil +} + // listenUDP listens on a UDP port and returns the value of net.Conn.Read() for // the first read on that port. func listenUDP(port int, timeout time.Duration) error { |