remove v1

This commit is contained in:
xjasonlyu
2020-11-05 18:35:45 +08:00
parent 0d634b48d8
commit 6f89409a03
289 changed files with 0 additions and 70137 deletions

View File

@@ -1,31 +0,0 @@
package core
import (
"net"
)
// TCPConnHandler handles TCP connections comming from TUN.
type TCPConnHandler interface {
// Handle handles the conn for target.
Handle(conn net.Conn, target *net.TCPAddr) error
}
// UDPConnHandler handles UDP connections comming from TUN.
type UDPConnHandler interface {
// Connect connects the proxy server. Note that target can be nil.
Connect(conn UDPConn, target *net.UDPAddr) error
// ReceiveTo will be called when data arrives from TUN.
ReceiveTo(conn UDPConn, data []byte, addr *net.UDPAddr) error
}
var tcpConnHandler TCPConnHandler
var udpConnHandler UDPConnHandler
func RegisterTCPConnHandler(h TCPConnHandler) {
tcpConnHandler = h
}
func RegisterUDPConnHandler(h UDPConnHandler) {
udpConnHandler = h
}