Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CmdToString (0.52 sec)

  1. 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)
  2. 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)
  3. 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