Files
gluetun/internal/wireguard/wireguard_unspecified.go
T
Quentin McGaw b04529c380 chore!(amneziawg): refactor to be separate from wireguard
- amneziawg is now a VPN protocol and no longer a Wireguard implementation
- Use it with VPN_TYPE=amneziawg
- document AMNEZIAWG_* options in Dockerfile
- document amneziawg support in readme
- separate amneziawg settings and code from wireguard
- re-use code from wireguard whenever possible
2026-03-11 17:16:18 +00:00

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")
}