...

Source file src/github.com/Microsoft/hcsshim/hnssupport.go

Documentation: github.com/Microsoft/hcsshim

     1  //go:build windows
     2  
     3  package hcsshim
     4  
     5  import (
     6  	"github.com/Microsoft/hcsshim/internal/hns"
     7  )
     8  
     9  type HNSSupportedFeatures = hns.HNSSupportedFeatures
    10  
    11  type HNSAclFeatures = hns.HNSAclFeatures
    12  
    13  func GetHNSSupportedFeatures() HNSSupportedFeatures {
    14  	return hns.GetHNSSupportedFeatures()
    15  }
    16  

View as plain text