From 4c27a1b7821fcb9059721359aee300bc2d772621 Mon Sep 17 00:00:00 2001 From: Mathew Date: Mon, 1 Jan 2024 21:34:18 +1100 Subject: [PATCH] ... --- IPTables.Net.Tests/IPTables.Net.Tests.csproj | 2 +- IPTables.Net/IPTables.Net.csproj | 2 +- IPTables.Net/IpUtils/Utils/IpController.cs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/IPTables.Net.Tests/IPTables.Net.Tests.csproj b/IPTables.Net.Tests/IPTables.Net.Tests.csproj index fea290f..6dacfa1 100644 --- a/IPTables.Net.Tests/IPTables.Net.Tests.csproj +++ b/IPTables.Net.Tests/IPTables.Net.Tests.csproj @@ -12,7 +12,7 @@ - + diff --git a/IPTables.Net/IPTables.Net.csproj b/IPTables.Net/IPTables.Net.csproj index c71296a..9d1c450 100644 --- a/IPTables.Net/IPTables.Net.csproj +++ b/IPTables.Net/IPTables.Net.csproj @@ -9,7 +9,7 @@ IPNetwork2 - + diff --git a/IPTables.Net/IpUtils/Utils/IpController.cs b/IPTables.Net/IpUtils/Utils/IpController.cs index 58384d8..ae52853 100644 --- a/IPTables.Net/IpUtils/Utils/IpController.cs +++ b/IPTables.Net/IpUtils/Utils/IpController.cs @@ -91,9 +91,9 @@ protected string[] Command(string command, params string[] args) { string output, error; ProcessHelper.ReadToEnd(process, out output, out error); - Console.WriteLine(cmd); + /*Console.WriteLine(cmd); Console.WriteLine("output" + output); - Console.WriteLine("error" + error); + Console.WriteLine("error" + error);*/ return new string[] {output.Trim(), error.Trim()}; } }