fix deadlock when closing the server and the connection at the same time

This commit is contained in:
Marten Seemann 2020-10-29 17:56:14 +07:00
parent b7652887d2
commit 4c25cea9ec
3 changed files with 6 additions and 1 deletions

View file

@ -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")
}