Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HandleDNSUDP (0.15 sec)

  1. tools/istio-clean-iptables/pkg/cmd/cleanup.go

    	// Remove the old DNS UDP rules
    	if cfg.RedirectDNS {
    		ownerGroupsFilter := types.ParseInterceptFilter(cfg.OwnerGroupsInclude, cfg.OwnerGroupsExclude)
    
    		common.HandleDNSUDP(common.DeleteOps, builder.NewIptablesRuleBuilder(nil), ext, iptV, ipt6V, cfg.ProxyUID, cfg.ProxyGID,
    			cfg.DNSServersV4, cfg.DNSServersV6, cfg.CaptureAllDNS, ownerGroupsFilter)
    	}
    }
    
    func (c *IptablesCleaner) Run() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run.go

    	return f
    }
    
    func (f UDPRuleApplier) WithTable(table string) UDPRuleApplier {
    	f.table = table
    	return f
    }
    
    // HandleDNSUDP is a helper function to tackle with DNS UDP specific operations.
    // This helps the creation logic of DNS UDP rules in sync with the deletion.
    func HandleDNSUDP(
    	ops Ops, iptables *builder.IptablesRuleBuilder, ext dep.Dependencies,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top