mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
fix deadlock when closing the server and the connection at the same time
This commit is contained in:
parent
b7652887d2
commit
4c25cea9ec
3 changed files with 6 additions and 1 deletions
|
@ -274,12 +274,12 @@ func (s *baseServer) accept(ctx context.Context) (quicSession, error) {
|
|||
|
||||
// Close the server
|
||||
func (s *baseServer) Close() error {
|
||||
s.sessionHandler.CloseServer()
|
||||
s.mutex.Lock()
|
||||
defer s.mutex.Unlock()
|
||||
if s.closed {
|
||||
return nil
|
||||
}
|
||||
s.sessionHandler.CloseServer()
|
||||
if s.serverError == nil {
|
||||
s.serverError = errors.New("server closed")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue