@@ -2,7 +2,6 @@ package outbound
2
2
3
3
import (
4
4
"context"
5
- "crypto/tls"
6
5
"errors"
7
6
"net"
8
7
"runtime"
@@ -16,6 +15,7 @@ import (
16
15
tlsC "github.com/metacubex/mihomo/component/tls"
17
16
C "github.com/metacubex/mihomo/constant"
18
17
"github.com/metacubex/mihomo/transport/anytls"
18
+ "github.com/metacubex/mihomo/transport/vmess"
19
19
20
20
M "github.com/sagernet/sing/common/metadata"
21
21
"github.com/sagernet/sing/common/uot"
@@ -38,6 +38,7 @@ type AnyTLSOption struct {
38
38
SNI string `proxy:"sni,omitempty"`
39
39
ClientFingerprint string `proxy:"client-fingerprint,omitempty"`
40
40
SkipCertVerify bool `proxy:"skip-cert-verify,omitempty"`
41
+ Fingerprint string `proxy:"fingerprint,omitempty"`
41
42
UDP bool `proxy:"udp,omitempty"`
42
43
IdleSessionCheckInterval int `proxy:"idle-session-check-interval,omitempty"`
43
44
IdleSessionTimeout int `proxy:"idle-session-timeout,omitempty"`
@@ -97,21 +98,21 @@ func NewAnyTLS(option AnyTLSOption) (*AnyTLS, error) {
97
98
Dialer : singDialer ,
98
99
IdleSessionCheckInterval : time .Duration (option .IdleSessionCheckInterval ) * time .Second ,
99
100
IdleSessionTimeout : time .Duration (option .IdleSessionTimeout ) * time .Second ,
100
- ClientFingerprint : option .ClientFingerprint ,
101
101
}
102
- tlsConfig := & tls.Config {
103
- ServerName : option .SNI ,
104
- InsecureSkipVerify : option .SkipCertVerify ,
105
- NextProtos : option .ALPN ,
102
+ tlsConfig := & vmess.TLSConfig {
103
+ Host : option .SNI ,
104
+ SkipCertVerify : option .SkipCertVerify ,
105
+ NextProtos : option .ALPN ,
106
+ FingerPrint : option .Fingerprint ,
107
+ ClientFingerprint : option .ClientFingerprint ,
106
108
}
107
- if tlsConfig .ServerName == "" {
108
- tlsConfig .ServerName = "127.0.0.1"
109
+ if tlsConfig .Host == "" {
110
+ tlsConfig .Host = option . Server
109
111
}
110
- tOption .TLSConfig = tlsConfig
111
-
112
- if tlsC .HaveGlobalFingerprint () && len (tOption .ClientFingerprint ) == 0 {
113
- tOption .ClientFingerprint = tlsC .GetGlobalFingerprint ()
112
+ if tlsC .HaveGlobalFingerprint () && len (option .ClientFingerprint ) == 0 {
113
+ tlsConfig .ClientFingerprint = tlsC .GetGlobalFingerprint ()
114
114
}
115
+ tOption .TLSConfig = tlsConfig
115
116
116
117
outbound := & AnyTLS {
117
118
Base : & Base {
0 commit comments