mirror of
https://github.com/SagerNet/sing-quic.git
synced 2025-04-03 03:47:39 +03:00
Fix source not unwrapped
This commit is contained in:
parent
8356fa4ad8
commit
2419e1d7f7
3 changed files with 3 additions and 3 deletions
|
@ -159,7 +159,7 @@ func (s *Service[U]) loopConnections(listener qtls.Listener) {
|
|||
Service: s,
|
||||
ctx: s.ctx,
|
||||
quicConn: connection,
|
||||
source: M.SocksaddrFromNet(connection.RemoteAddr()),
|
||||
source: M.SocksaddrFromNet(connection.RemoteAddr()).Unwrap(),
|
||||
connDone: make(chan struct{}),
|
||||
udpConnMap: make(map[uint32]*udpPacketConn),
|
||||
}
|
||||
|
|
|
@ -156,7 +156,7 @@ func (s *Service[U]) handleConnection(connection quic.Connection) {
|
|||
Service: s,
|
||||
ctx: s.ctx,
|
||||
quicConn: connection,
|
||||
source: M.SocksaddrFromNet(connection.RemoteAddr()),
|
||||
source: M.SocksaddrFromNet(connection.RemoteAddr()).Unwrap(),
|
||||
connDone: make(chan struct{}),
|
||||
udpConnMap: make(map[uint32]*udpPacketConn),
|
||||
}
|
||||
|
|
|
@ -163,7 +163,7 @@ func (s *Service[U]) handleConnection(connection quic.Connection) {
|
|||
Service: s,
|
||||
ctx: s.ctx,
|
||||
quicConn: connection,
|
||||
source: M.SocksaddrFromNet(connection.RemoteAddr()),
|
||||
source: M.SocksaddrFromNet(connection.RemoteAddr()).Unwrap(),
|
||||
connDone: make(chan struct{}),
|
||||
authDone: make(chan struct{}),
|
||||
udpConnMap: make(map[uint16]*udpPacketConn),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue