mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-06 20:10:11 +02:00
17 lines
248 B
Go
17 lines
248 B
Go
//go:build !linux
|
|
|
|
package wireguard
|
|
|
|
import (
|
|
"net"
|
|
"os"
|
|
)
|
|
|
|
func uapiOpen(name string) (*os.File, error) {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func uapiListen(interfaceName string, uapiFile *os.File) (net.Listener, error) {
|
|
panic("not implemented")
|
|
}
|