mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 21:31:16 +08:00
Feature: support xray's ws-0rtt path (#1558)
This commit is contained in:
parent
410772e81c
commit
4522cdc551
@ -11,6 +11,7 @@ import (
|
||||
"net"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
@ -305,6 +306,18 @@ func streamWebsocketConn(conn net.Conn, c *WebsocketConfig, earlyData *bytes.Buf
|
||||
}
|
||||
|
||||
func StreamWebsocketConn(conn net.Conn, c *WebsocketConfig) (net.Conn, error) {
|
||||
if u, err := url.Parse(c.Path); err == nil {
|
||||
if q := u.Query(); q.Get("ed") != "" {
|
||||
if ed, err := strconv.Atoi(q.Get("ed")); err == nil {
|
||||
c.MaxEarlyData = ed
|
||||
c.EarlyDataHeaderName = "Sec-WebSocket-Protocol"
|
||||
q.Del("ed")
|
||||
u.RawQuery = q.Encode()
|
||||
c.Path = u.String()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if c.MaxEarlyData > 0 {
|
||||
return streamWebsocketWithEarlyDataConn(conn, c)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user