mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 21:31:16 +08:00
fix: http sniffer return host that was handled correctly
This commit is contained in:
parent
5fee0b5bf1
commit
4b04faa88b
@ -5,7 +5,6 @@ import (
|
||||
"errors"
|
||||
C "github.com/Dreamacro/clash/constant"
|
||||
"net"
|
||||
"strconv"
|
||||
"strings"
|
||||
)
|
||||
|
||||
@ -85,23 +84,15 @@ func SniffHTTP(b []byte) (*string, error) {
|
||||
}
|
||||
key := strings.ToLower(string(parts[0]))
|
||||
if key == "host" {
|
||||
port := 80
|
||||
rawHost := strings.ToLower(string(bytes.TrimSpace(parts[1])))
|
||||
host, rawPort, err := net.SplitHostPort(rawHost)
|
||||
host, _, err := net.SplitHostPort(rawHost)
|
||||
if err != nil {
|
||||
if addrError, ok := err.(*net.AddrError); ok && strings.Contains(addrError.Err, "missing port") {
|
||||
host = rawHost
|
||||
} else {
|
||||
return nil, err
|
||||
}
|
||||
} else if len(rawPort) > 0 {
|
||||
intPort, err := strconv.ParseUint(rawPort, 0, 16)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
port = int(intPort)
|
||||
}
|
||||
host = net.JoinHostPort(host, strconv.Itoa(port))
|
||||
return &host, nil
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user