From 481cc7e9c410f88cd0fbd1680009a6fd059657af Mon Sep 17 00:00:00 2001 From: Iryna Shustava Date: Fri, 19 Mar 2021 16:37:33 -0700 Subject: [PATCH] Remove currently unused config options --- sdk/iptables/iptables.go | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/sdk/iptables/iptables.go b/sdk/iptables/iptables.go index 3b97c88250a4..df2ed207d0b7 100644 --- a/sdk/iptables/iptables.go +++ b/sdk/iptables/iptables.go @@ -30,20 +30,6 @@ type Config struct { // ProxyUserID is the user ID of the proxy process. ProxyUserID string - // ExcludeInboundPorts is the list of ports that should be excluded - // from inbound traffic redirection. - ExcludeInboundPorts []string - // ExcludeOutboundPorts is the list of ports that should be excluded - // from outbound traffic redirection. - ExcludeOutboundPorts []string - // ExcludeOutboundCIDRs is the list of IP CIDRs that should be excluded - // from outbound traffic redirection. - ExcludeOutboundCIDRs []string - - // NetNS is the network namespace where the iptables commands - // should be applied. - NetNS string - // IptablesProvider is the Provider that will apply iptables rules. IptablesProvider Provider }