Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AppendRuleV6 (0.12 sec)

  1. tools/istio-iptables/pkg/builder/iptables_builder_test.go

    			true,
    		},
    		{
    			"append-multi-v6",
    			false,
    			true,
    			func(builder *IptablesRuleBuilder) {
    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "foo", "-b", "bar")
    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "fu", "-b", "bar")
    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "foo", "-b", "baz")
    			},
    			true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	rb.AppendRuleV4(command, chain, table, params...)
    	rb.AppendRuleV6(command, chain, table, params...)
    	return rb
    }
    
    func (rb *IptablesRuleBuilder) AppendRuleV6(command log.Command, chain string, table string, params ...string) *IptablesRuleBuilder {
    	if !rb.cfg.EnableIPv6 {
    		return rb
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top