From cb68142e6aa6830b255d6e7fdc22df1b22d7c36e Mon Sep 17 00:00:00 2001 From: Nathan Gieseker Date: Fri, 24 Aug 2018 19:15:17 -0700 Subject: [PATCH] Update network/iptables_windows.go Fixes compilation issues with windows --- network/iptables_windows.go | 7 +++++++ 1 file changed, 7 insertions(+) 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) { +}