Fix parsing addr

This commit is contained in:
世界 2022-05-11 20:09:29 +08:00
parent 45896ae10f
commit e44d440031
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 34 additions and 15 deletions

View file

@ -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")