mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Attempt to unwrap ip-in-fqdn socksaddr
This commit is contained in:
parent
35c336a016
commit
717bc38fd3
2 changed files with 2 additions and 3 deletions
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue