water/syscalls_other.go
2015-11-19 19:28:05 +00:00

13 lines
319 B
Go

// +build !linux
package water
import "errors"
func newTAP(ifName string) (ifce *Interface, err error) {
return nil, errors.New("tap interface not implemented on this platform")
}
func newTUN(ifName string) (ifce *Interface, err error) {
return nil, errors.New("tap interface not implemented on this platform")
}