mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-06 01:07:03 +08:00
9 lines
197 B
Go
9 lines
197 B
Go
package adapter
|
|
|
|
// TransportHandler is a TCP/UDP connection handler that implements
|
|
// HandleTCP and HandleUDP methods.
|
|
type TransportHandler interface {
|
|
HandleTCP(TCPConn)
|
|
HandleUDP(UDPConn)
|
|
}
|