summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/stack/iptables.go
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-06-19 00:04:46 +0000
committergVisor bot <gvisor-bot@google.com>2020-06-19 00:04:46 +0000
commit3bff8759da51739080475f03d0da29423182bb0e (patch)
tree9e4839e22f14fd0181f1c0170e0b76bdd18d98d6 /pkg/tcpip/stack/iptables.go
parent70bc49849935a699f700c124228bf5e722a51c51 (diff)
parent28b8a5cc3ac538333756084da28d7f13f13b5c87 (diff)
Merge release-20200608.0-87-g28b8a5cc3 (automated)
Diffstat (limited to 'pkg/tcpip/stack/iptables.go')
-rw-r--r--pkg/tcpip/stack/iptables.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/pkg/tcpip/stack/iptables.go b/pkg/tcpip/stack/iptables.go
index 4e9b404c8..dc2b77c9d 100644
--- a/pkg/tcpip/stack/iptables.go
+++ b/pkg/tcpip/stack/iptables.go
@@ -173,14 +173,6 @@ func (it *IPTables) ReplaceTable(name string, table Table) {
it.tables[name] = table
}
-// ModifyTables acquires write-lock and calls fn with internal name-to-table
-// map. This function can be used to update multiple tables atomically.
-func (it *IPTables) ModifyTables(fn func(map[string]Table)) {
- it.mu.Lock()
- defer it.mu.Unlock()
- fn(it.tables)
-}
-
// GetPriorities returns slice of priorities associated with hook.
func (it *IPTables) GetPriorities(hook Hook) []string {
it.mu.RLock()