github.com/aporeto-inc/trireme-lib@v10.358.0+incompatible/controller/pkg/ebpf/ebpf_windows.go (about)

     1  package ebpf
     2  
     3  // IsEBPFSupported returns false for Windows.
     4  func IsEBPFSupported() bool {
     5  	return false
     6  }
     7  
     8  // LoadBPF is not supported on Windows.
     9  func LoadBPF() BPFModule {
    10  	return nil
    11  }