mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
9 lines
200 B
Go
9 lines
200 B
Go
// Package protect set VPN protect for every conns to bypass route.
|
|
package protect
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
// ListenUDPFunc listen UDP with VPN protect.
|
|
type ListenUDPFunc func() (net.PacketConn, error)
|