Files
tun2socks/core/stack/handler.go
2021-02-07 18:49:55 +08:00

11 lines
155 B
Go
Executable File

package stack
import (
"github.com/xjasonlyu/tun2socks/common/adapter"
)
type Handler interface {
Add(adapter.TCPConn)
AddPacket(adapter.UDPPacket)
}