Clash.Meta/component/v2ray-plugin/websocket.go

50 lines
881 B
Go
Raw Normal View History

2019-02-11 15:25:10 +08:00
package obfs
import (
"crypto/tls"
"net"
"net/http"
2019-02-11 15:25:10 +08:00
"github.com/Dreamacro/clash/component/vmess"
)
// Option is options of websocket obfs
type Option struct {
2019-02-11 15:25:10 +08:00
Host string
Path string
Headers map[string]string
2019-02-11 15:25:10 +08:00
TLSConfig *tls.Config
Mux bool
2019-02-11 15:25:10 +08:00
}
// NewV2rayObfs return a HTTPObfs
func NewV2rayObfs(conn net.Conn, option *Option) (net.Conn, error) {
header := http.Header{}
for k, v := range option.Headers {
header.Add(k, v)
}
2019-02-11 15:25:10 +08:00
config := &vmess.WebsocketConfig{
Host: option.Host,
Path: option.Path,
TLS: option.TLSConfig != nil,
Headers: header,
2019-02-11 15:25:10 +08:00
TLSConfig: option.TLSConfig,
}
var err error
conn, err = vmess.NewWebsocketConn(conn, config)
if err != nil {
return nil, err
}
if option.Mux {
conn = NewMux(conn, MuxOption{
ID: [2]byte{0, 0},
Host: "127.0.0.1",
Port: 0,
})
}
2019-02-11 15:25:10 +08:00
return conn, nil
}