Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for executeXTables (1.84 sec)

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

    var ErrNotImplemented = errors.New("not implemented")
    
    func (r *RealDependencies) execute(cmd string, ignoreErrors bool, stdin io.Reader, args ...string) error {
    	return ErrNotImplemented
    }
    
    func (r *RealDependencies) executeXTables(cmd constants.IptablesCmd, iptVer *IptablesVersion, ignoreErrors bool, stdin io.ReadSeeker, args ...string) error {
    	return ErrNotImplemented
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 08:35:16 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/dependencies/implementation.go

    	return r.executeXTables(cmd, iptVer, false, stdin, args...)
    }
    
    // RunQuietlyAndIgnore runs a command quietly and ignores errors
    func (r *RealDependencies) RunQuietlyAndIgnore(cmd constants.IptablesCmd, iptVer *IptablesVersion, stdin io.ReadSeeker, args ...string) {
    	_ = r.executeXTables(cmd, iptVer, true, stdin, args...)
    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

    	return err
    }
    
    func mount(src, dst string) error {
    	return syscall.Mount(src, dst, "", syscall.MS_BIND|syscall.MS_RDONLY, "")
    }
    
    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 == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top