github.com/sagernet/netlink@v0.0.0-20240612041022-b9a21c07ac6a/fou_unspecified.go (about)

     1  //go:build !linux
     2  // +build !linux
     3  
     4  package netlink
     5  
     6  func FouAdd(f Fou) error {
     7  	return ErrNotImplemented
     8  }
     9  
    10  func FouDel(f Fou) error {
    11  	return ErrNotImplemented
    12  }
    13  
    14  func FouList(fam int) ([]Fou, error) {
    15  	return nil, ErrNotImplemented
    16  }