mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
13 lines
187 B
Go
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)
|
|
}
|
|
}
|