Browse Source

Merge pull request #1032 from nagiesek/master

Fix windows Build Break
Brandon Philips 6 years ago
parent
commit
1aa15b9b88
1 changed files with 7 additions and 0 deletions
  1. 7 0
      network/iptables_windows.go

+ 7 - 0
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) {
+}