Skip to content

Commit

Permalink
IPTablesTables would be useful as a public class
Browse files Browse the repository at this point in the history
  • Loading branch information
splitice committed Jun 10, 2021
1 parent 0561a2b commit f7778c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions IPTables.Net/Iptables/IPTablesTables.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ namespace IPTables.Net.Iptables
/// <summary>
/// Data to define the default IPTables tables and chains
/// </summary>
internal class IPTablesTables
public class IPTablesTables
{
internal static Dictionary<string, List<string>> DefaultTables = new Dictionary<string, List<string>>
public static Dictionary<string, List<string>> DefaultTables = new Dictionary<string, List<string>>
{
{"filter", new List<string> {"INPUT", "FORWARD", "OUTPUT"}},
{"nat", new List<string> {"PREROUTING", "POSTROUTING", "INPUT", "OUTPUT"}},
Expand Down

0 comments on commit f7778c4

Please sign in to comment.