@@ -13,6 +13,7 @@ import (
13
13
"github.com/metacubex/mihomo/component/proxydialer"
14
14
"github.com/metacubex/mihomo/component/resolver"
15
15
C "github.com/metacubex/mihomo/constant"
16
+ gost "github.com/metacubex/mihomo/transport/gost-plugin"
16
17
"github.com/metacubex/mihomo/transport/restls"
17
18
obfs "github.com/metacubex/mihomo/transport/simple-obfs"
18
19
shadowtls "github.com/metacubex/mihomo/transport/sing-shadowtls"
@@ -34,6 +35,7 @@ type ShadowSocks struct {
34
35
obfsMode string
35
36
obfsOption * simpleObfsOption
36
37
v2rayOption * v2rayObfs.Option
38
+ gostOption * gost.Option
37
39
shadowTLSOption * shadowtls.ShadowTLSOption
38
40
restlsConfig * restlsC.Config
39
41
}
@@ -71,6 +73,17 @@ type v2rayObfsOption struct {
71
73
V2rayHttpUpgradeFastOpen bool `obfs:"v2ray-http-upgrade-fast-open,omitempty"`
72
74
}
73
75
76
+ type gostObfsOption struct {
77
+ Mode string `obfs:"mode"`
78
+ Host string `obfs:"host,omitempty"`
79
+ Path string `obfs:"path,omitempty"`
80
+ TLS bool `obfs:"tls,omitempty"`
81
+ Fingerprint string `obfs:"fingerprint,omitempty"`
82
+ Headers map [string ]string `obfs:"headers,omitempty"`
83
+ SkipCertVerify bool `obfs:"skip-cert-verify,omitempty"`
84
+ Mux bool `obfs:"mux,omitempty"`
85
+ }
86
+
74
87
type shadowTLSOption struct {
75
88
Password string `obfs:"password"`
76
89
Host string `obfs:"host"`
@@ -97,7 +110,13 @@ func (ss *ShadowSocks) StreamConnContext(ctx context.Context, c net.Conn, metada
97
110
c = obfs .NewHTTPObfs (c , ss .obfsOption .Host , port )
98
111
case "websocket" :
99
112
var err error
100
- c , err = v2rayObfs .NewV2rayObfs (ctx , c , ss .v2rayOption )
113
+ if ss .v2rayOption != nil {
114
+ c , err = v2rayObfs .NewV2rayObfs (ctx , c , ss .v2rayOption )
115
+ } else if ss .gostOption != nil {
116
+ c , err = gost .NewGostWebsocket (ctx , c , ss .gostOption )
117
+ } else {
118
+ return nil , fmt .Errorf ("plugin options is required" )
119
+ }
101
120
if err != nil {
102
121
return nil , fmt .Errorf ("%s connect error: %w" , ss .addr , err )
103
122
}
@@ -240,6 +259,7 @@ func NewShadowSocks(option ShadowSocksOption) (*ShadowSocks, error) {
240
259
}
241
260
242
261
var v2rayOption * v2rayObfs.Option
262
+ var gostOption * gost.Option
243
263
var obfsOption * simpleObfsOption
244
264
var shadowTLSOpt * shadowtls.ShadowTLSOption
245
265
var restlsConfig * restlsC.Config
@@ -281,6 +301,28 @@ func NewShadowSocks(option ShadowSocksOption) (*ShadowSocks, error) {
281
301
v2rayOption .SkipCertVerify = opts .SkipCertVerify
282
302
v2rayOption .Fingerprint = opts .Fingerprint
283
303
}
304
+ } else if option .Plugin == "gost-plugin" {
305
+ opts := gostObfsOption {Host : "bing.com" , Mux : true }
306
+ if err := decoder .Decode (option .PluginOpts , & opts ); err != nil {
307
+ return nil , fmt .Errorf ("ss %s initialize gost-plugin error: %w" , addr , err )
308
+ }
309
+
310
+ if opts .Mode != "websocket" {
311
+ return nil , fmt .Errorf ("ss %s obfs mode error: %s" , addr , opts .Mode )
312
+ }
313
+ obfsMode = opts .Mode
314
+ gostOption = & gost.Option {
315
+ Host : opts .Host ,
316
+ Path : opts .Path ,
317
+ Headers : opts .Headers ,
318
+ Mux : opts .Mux ,
319
+ }
320
+
321
+ if opts .TLS {
322
+ gostOption .TLS = true
323
+ gostOption .SkipCertVerify = opts .SkipCertVerify
324
+ gostOption .Fingerprint = opts .Fingerprint
325
+ }
284
326
} else if option .Plugin == shadowtls .Mode {
285
327
obfsMode = shadowtls .Mode
286
328
opt := & shadowTLSOption {
@@ -336,6 +378,7 @@ func NewShadowSocks(option ShadowSocksOption) (*ShadowSocks, error) {
336
378
option : & option ,
337
379
obfsMode : obfsMode ,
338
380
v2rayOption : v2rayOption ,
381
+ gostOption : gostOption ,
339
382
obfsOption : obfsOption ,
340
383
shadowTLSOption : shadowTLSOpt ,
341
384
restlsConfig : restlsConfig ,
0 commit comments