1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-14 16:25:57 -05:00
v2fly/app/tun/handler.go

8 lines
121 B
Go
Raw Normal View History

2023-05-28 00:18:58 -04:00
package tun
2023-05-28 02:32:48 -04:00
import "github.com/v2fly/v2ray-core/v5/common/net"
type Handler interface {
Handle(conn net.Conn) error
}