Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CmdToString (0.15 sec)

  1. tools/istio-iptables/pkg/dependencies/stub.go

    			s.ExecutedAll = append(s.ExecutedAll, stdincmd)
    			s.ExecutedStdin = append(s.ExecutedStdin, stdincmd)
    		}
    	} else {
    		// ...or as discrete individual commands
    		cmdline := strings.Join(append([]string{iptVer.CmdToString(cmd)}, args...), " ")
    		s.ExecutedAll = append(s.ExecutedAll, cmdline)
    		if quietly {
    			s.ExecutedQuietly = append(s.ExecutedQuietly, cmdline)
    		} else {
    			s.ExecutedNormally = append(s.ExecutedNormally, cmdline)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/dependencies/implementation.go

    	// true if legacy mode, false if nf_tables
    	Legacy bool
    	// true if we detected that existing rules are present for this variant (legacy, nft, v6)
    	ExistingRules bool
    }
    
    func (v IptablesVersion) CmdToString(cmd constants.IptablesCmd) string {
    	switch cmd {
    	case constants.IPTables:
    		return v.DetectedBinary
    	case constants.IPTablesSave:
    		return v.DetectedSaveBinary
    	case constants.IPTablesRestore:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    }
    
    func (r *RealDependencies) executeXTables(cmd constants.IptablesCmd, iptVer *IptablesVersion, ignoreErrors bool, stdin io.ReadSeeker, args ...string) error {
    	mode := "without lock"
    	cmdBin := iptVer.CmdToString(cmd)
    	if cmdBin == "" {
    		return fmt.Errorf("called without iptables binary, cannot execute!: %+v", iptVer)
    	}
    	var c *exec.Cmd
    	needLock := iptVer.IsWriteCmd(cmd) && !iptVer.NoLocks()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. cni/pkg/iptables/iptables.go

    	var data string
    
    	if isIpv4 {
    		data = iptablesBuilder.BuildV4Restore()
    	} else {
    		data = iptablesBuilder.BuildV6Restore()
    	}
    
    	log.Infof("Running %s with the following input:\n%v", iptVer.CmdToString(cmd), strings.TrimSpace(data))
    	// --noflush to prevent flushing/deleting previous contents from table
    	return cfg.ext.Run(cmd, iptVer, strings.NewReader(data), "--noflush", "-v")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/run.go

    	if isIpv4 {
    		data = cfg.ruleBuilder.BuildV4Restore()
    	} else {
    		data = cfg.ruleBuilder.BuildV6Restore()
    	}
    
    	log.Infof("Running iptables restore with: %s and the following input:\n%v", iptVer.CmdToString(constants.IPTablesRestore), strings.TrimSpace(data))
    	// --noflush to prevent flushing/deleting previous contents from table
    	return cfg.ext.Run(constants.IPTablesRestore, iptVer, strings.NewReader(data), "--noflush")
    }
    
    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