mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 07:42:22 +08:00
14 lines
218 B
Go
14 lines
218 B
Go
package dialer
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/sagernet/sing/common/control"
|
|
)
|
|
|
|
type WireGuardListener interface {
|
|
ListenPacketCompat(network, address string) (net.PacketConn, error)
|
|
}
|
|
|
|
var WgControlFns []control.Func
|