Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newMonitorFakeExec (0.35 sec)

  1. pkg/util/iptables/monitor_test.go

    // changes its use of Exec.
    type monitorFakeExec struct {
    	sync.Mutex
    
    	tables map[string]sets.Set[string]
    
    	block      bool
    	wasBlocked bool
    }
    
    func newMonitorFakeExec() *monitorFakeExec {
    	tables := make(map[string]sets.Set[string])
    	tables["mangle"] = sets.New[string]()
    	tables["filter"] = sets.New[string]()
    	tables["nat"] = sets.New[string]()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top