github.com/igoogolx/clash@v1.19.8/component/ipset/ipset_others.go (about)

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