hysteria/extras/protect/protect_stub.go
HystericalDragon 03c8b5e6b9
feat: support Android protect path
about: 1ac9d4956b

Signed-off-by: HystericalDragon <HystericalDragons@proton.me>
2024-04-03 18:09:40 +08:00

13 lines
187 B
Go

//go:build !linux
package protect
import (
"net"
)
func ListenUDP(protectPath string) ListenUDPFunc {
return func() (net.PacketConn, error) {
return net.ListenUDP("udp", nil)
}
}