github.com/aporeto-inc/trireme-lib@v10.358.0+incompatible/controller/internal/enforcer/nfqdatapath/autoport_windows.go (about)

     1  // +build windows
     2  
     3  package nfqdatapath
     4  
     5  func (d *defaultRead) readProcNetTCP() (inodeMap map[string]string, userMap map[string]map[string]bool, err error) {
     6  
     7  	inodeMap = map[string]string{}
     8  	userMap = map[string]map[string]bool{}
     9  
    10  	return inodeMap, userMap, nil
    11  }
    12  
    13  func (d *defaultRead) readOpenSockFD(pid string) []string {
    14  	var inodes []string
    15  
    16  	return inodes
    17  }
    18  
    19  func (d *defaultRead) getCgroupList() []string {
    20  	return []string{}
    21  }
    22  
    23  func (d *defaultRead) listCgroupProcesses(cgroupname string) ([]string, error) {
    24  	return []string{}, nil
    25  }