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

@ -116,9 +116,7 @@ func (s *Serializer) ReadAddress(reader io.Reader) (Socksaddr, error) {
if err != nil {
return Socksaddr{}, E.Cause(err, "read fqdn")
}
return Socksaddr{
Fqdn: fqdn,
}, nil
return ParseSocksaddrHostPort(fqdn, 0), nil
default:
switch family {
case AddressFamilyIPv4:

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
}