mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
33 lines
489 B
Go
33 lines
489 B
Go
package adapters
|
|
|
|
import (
|
|
"net"
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
"github.com/riobard/go-shadowsocks2/socks"
|
|
)
|
|
|
|
type SocksAdapter struct {
|
|
conn net.Conn
|
|
addr *C.Addr
|
|
}
|
|
|
|
func (s *SocksAdapter) Close() {
|
|
s.conn.Close()
|
|
}
|
|
|
|
func (s *SocksAdapter) Addr() *C.Addr {
|
|
return s.addr
|
|
}
|
|
|
|
func (s *SocksAdapter) Conn() net.Conn {
|
|
return s.conn
|
|
}
|
|
|
|
func NewSocks(target socks.Addr, conn net.Conn) *SocksAdapter {
|
|
return &SocksAdapter{
|
|
conn: conn,
|
|
addr: parseSocksAddr(target),
|
|
}
|
|
}
|