mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-06 06:33:31 +03:00
Fix: disconnect normal proxy request
This commit is contained in:
parent
c0bd82d62b
commit
04927229ff
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ func (l *HttpListener) Address() string {
|
|||
func handleConn(conn net.Conn) {
|
||||
br := bufio.NewReader(conn)
|
||||
request, err := http.ReadRequest(br)
|
||||
if err != nil || !request.URL.IsAbs() {
|
||||
if err != nil || request.URL.Host == "" {
|
||||
conn.Close()
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue