8
8
N "github.com/metacubex/mihomo/common/net"
9
9
C "github.com/metacubex/mihomo/constant"
10
10
LC "github.com/metacubex/mihomo/listener/config"
11
+ "github.com/metacubex/mihomo/listener/sing"
11
12
"github.com/metacubex/mihomo/transport/shadowsocks/core"
12
13
"github.com/metacubex/mihomo/transport/socks5"
13
14
)
@@ -18,6 +19,7 @@ type Listener struct {
18
19
listeners []net.Listener
19
20
udpListeners []* UDPListener
20
21
pickCipher core.Cipher
22
+ handler * sing.ListenerHandler
21
23
}
22
24
23
25
var _listener * Listener
@@ -28,7 +30,17 @@ func New(config LC.ShadowsocksServer, tunnel C.Tunnel, additions ...inbound.Addi
28
30
return nil , err
29
31
}
30
32
31
- sl := & Listener {false , config , nil , nil , pickCipher }
33
+ h , err := sing .NewListenerHandler (sing.ListenerConfig {
34
+ Tunnel : tunnel ,
35
+ Type : C .SHADOWSOCKS ,
36
+ Additions : additions ,
37
+ MuxOption : config .MuxOption ,
38
+ })
39
+ if err != nil {
40
+ return nil , err
41
+ }
42
+
43
+ sl := & Listener {false , config , nil , nil , pickCipher , h }
32
44
_listener = sl
33
45
34
46
for _ , addr := range strings .Split (config .Listen , "," ) {
@@ -107,7 +119,8 @@ func (l *Listener) HandleConn(conn net.Conn, tunnel C.Tunnel, additions ...inbou
107
119
_ = conn .Close ()
108
120
return
109
121
}
110
- tunnel .HandleTCPConn (inbound .NewSocket (target , conn , C .SHADOWSOCKS , additions ... ))
122
+ l .handler .HandleSocket (target , conn , additions ... )
123
+ //tunnel.HandleTCPConn(inbound.NewSocket(target, conn, C.SHADOWSOCKS, additions...))
111
124
}
112
125
113
126
func HandleShadowSocks (conn net.Conn , tunnel C.Tunnel , additions ... inbound.Addition ) bool {
0 commit comments