mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-06 09:16:58 +08:00
11 lines
155 B
Go
Executable File
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)
|
|
}
|