github.com/yaling888/clash@v1.53.0/component/ipset/ipset_others.go (about)

     1  //go:build !linux
     2  
     3  package ipset
     4  
     5  import (
     6  	"net/netip"
     7  )
     8  
     9  // Test Always return false in non-linux
    10  func Test(_ string, _ netip.Addr) (bool, error) {
    11  	return false, nil
    12  }
    13  
    14  // Verify Always pass in non-linux
    15  func Verify(_ string) error {
    16  	return nil
    17  }