diff --git a/network/iptables_windows.go b/network/iptables_windows.go index c86cfea06..30155fcb7 100644 --- a/network/iptables_windows.go +++ b/network/iptables_windows.go @@ -42,3 +42,10 @@ func ForwardRules(flannelNetwork string) []IPTablesRule { func SetupAndEnsureIPTables(rules []IPTablesRule, resyncPeriod int) { } + +func DeleteIPTables(rules []IPTablesRule) error { + return nil +} + +func teardownIPTables(ipt IPTables, rules []IPTablesRule) { +}