mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Fix parsing addr
This commit is contained in:
parent
45896ae10f
commit
e44d440031
6 changed files with 34 additions and 15 deletions
|
@ -45,7 +45,7 @@ func HandleRequest(ctx context.Context, request *http.Request, conn net.Conn, au
|
|||
if portStr == "" {
|
||||
portStr = "80"
|
||||
}
|
||||
destination := M.ParseSocksaddrHostPort(request.URL.Hostname(), portStr)
|
||||
destination := M.ParseSocksaddrHostPortStr(request.URL.Hostname(), portStr)
|
||||
_, err := fmt.Fprintf(conn, "HTTP/%d.%d %03d %s\r\n\r\n", request.ProtoMajor, request.ProtoMinor, http.StatusOK, "Connection established")
|
||||
if err != nil {
|
||||
return E.Cause(err, "write http response")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue