mirror of
https://github.com/SagerNet/sing-mux.git
synced 2025-04-03 03:47:40 +03:00
Fix accept stream
This commit is contained in:
parent
3e7b3cfc51
commit
5c2a0c4fa6
1 changed files with 3 additions and 4 deletions
|
@ -63,11 +63,10 @@ func (s *Service) NewConnection(ctx context.Context, conn net.Conn, metadata M.M
|
|||
}
|
||||
var group task.Group
|
||||
group.Append0(func(_ context.Context) error {
|
||||
var stream net.Conn
|
||||
for {
|
||||
stream, err = session.Accept()
|
||||
if err != nil {
|
||||
return err
|
||||
stream, aErr := session.Accept()
|
||||
if aErr != nil {
|
||||
return aErr
|
||||
}
|
||||
streamCtx := s.newStreamContext(ctx, stream)
|
||||
go func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue