mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 20:37:43 +03:00
Fix missing address unwrap in redirect server
This commit is contained in:
parent
c4df3641c7
commit
21b78edd8b
1 changed files with 2 additions and 2 deletions
|
@ -74,7 +74,7 @@ func (s *redirectServer) loopIn() {
|
||||||
}
|
}
|
||||||
var metadata M.Metadata
|
var metadata M.Metadata
|
||||||
metadata.Protocol = ProtocolRedirect
|
metadata.Protocol = ProtocolRedirect
|
||||||
metadata.Source = M.SocksaddrFromNet(conn.RemoteAddr())
|
metadata.Source = M.SocksaddrFromNet(conn.RemoteAddr()).Unwrap()
|
||||||
destination, err := control.GetOriginalDestination(conn)
|
destination, err := control.GetOriginalDestination(conn)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
_ = conn.SetLinger(0)
|
_ = conn.SetLinger(0)
|
||||||
|
@ -82,7 +82,7 @@ func (s *redirectServer) loopIn() {
|
||||||
s.logger.Error("process connection from ", metadata.Source, ": invalid connection: ", err)
|
s.logger.Error("process connection from ", metadata.Source, ": invalid connection: ", err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
metadata.Destination = M.SocksaddrFromNetIP(destination)
|
metadata.Destination = M.SocksaddrFromNetIP(destination).Unwrap()
|
||||||
go s.handler.NewConnection(s.ctx, conn, metadata)
|
go s.handler.NewConnection(s.ctx, conn, metadata)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue