mirror of
https://github.com/yggdrasil-network/water.git
synced 2025-05-19 16:35:10 +03:00
11 lines
282 B
Go
11 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")
|
|
}
|