Attempt to unwrap ip-in-fqdn socksaddr

This commit is contained in:
世界 2022-08-19 23:56:48 +08:00
parent 35c336a016
commit 717bc38fd3
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 2 additions and 3 deletions

View file

@ -66,6 +66,7 @@ func ReadRequest0(reader io.Reader) (request Request, err error) {
request.Username, err = readString(reader)
if readHostName {
request.Destination.Fqdn, err = readString(reader)
request.Destination = M.ParseSocksaddrHostPort(request.Destination.Fqdn, request.Destination.Port)
}
return
}