mirror of
https://github.com/fumiama/water.git
synced 2026-06-08 04:00:26 +08:00
12 lines
282 B
Go
12 lines
282 B
Go
// +build !linux
|
|
|
|
package water
|
|
|
|
func newTAP(ifName string) (ifce *Interface, err error) {
|
|
panic("water: tap interface not implemented on this platform")
|
|
}
|
|
|
|
func newTUN(ifName string) (ifce *Interface, err error) {
|
|
panic("water: tap interface not implemented on this platform")
|
|
}
|