mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
70 lines
1.2 KiB
Go
70 lines
1.2 KiB
Go
|
package mixed
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"time"
|
||
|
|
||
|
"github.com/Dreamacro/clash/common/cache"
|
||
|
"github.com/Dreamacro/clash/component/socks5"
|
||
|
"github.com/Dreamacro/clash/log"
|
||
|
|
||
|
"github.com/Dreamacro/clash/proxy/http"
|
||
|
"github.com/Dreamacro/clash/proxy/socks"
|
||
|
)
|
||
|
|
||
|
type MixedListener struct {
|
||
|
net.Listener
|
||
|
address string
|
||
|
closed bool
|
||
|
cache *cache.Cache
|
||
|
}
|
||
|
|
||
|
func NewMixedProxy(addr string) (*MixedListener, error) {
|
||
|
l, err := net.Listen("tcp", addr)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
ml := &MixedListener{l, addr, false, cache.New(30 * time.Second)}
|
||
|
go func() {
|
||
|
log.Infoln("Mixed(http+socks5) proxy listening at: %s", addr)
|
||
|
|
||
|
for {
|
||
|
c, err := ml.Accept()
|
||
|
if err != nil {
|
||
|
if ml.closed {
|
||
|
break
|
||
|
}
|
||
|
continue
|
||
|
}
|
||
|
go handleConn(c, ml.cache)
|
||
|
}
|
||
|
}()
|
||
|
|
||
|
return ml, nil
|
||
|
}
|
||
|
|
||
|
func (l *MixedListener) Close() {
|
||
|
l.closed = true
|
||
|
l.Listener.Close()
|
||
|
}
|
||
|
|
||
|
func (l *MixedListener) Address() string {
|
||
|
return l.address
|
||
|
}
|
||
|
|
||
|
func handleConn(conn net.Conn, cache *cache.Cache) {
|
||
|
bufConn := NewBufferedConn(conn)
|
||
|
head, err := bufConn.Peek(1)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if head[0] == socks5.Version {
|
||
|
socks.HandleSocks(bufConn)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
http.HandleConn(bufConn, cache)
|
||
|
}
|