1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 23:36:25 -04:00
v2fly/app/tun/handler.go
2023-10-22 22:44:27 +01:00

8 lines
121 B
Go

package tun
import "github.com/v2fly/v2ray-core/v5/common/net"
type Handler interface {
Handle(conn net.Conn) error
}