mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
check for uninitialized fields when closing the Transport (#3908)
* close Transport: check for possibly uninitialized fields * close Transport: close Conn, as conn might not be initialized * close Transport: add test case
This commit is contained in:
parent
9acce3c6d9
commit
8352e5dc32
2 changed files with 24 additions and 4 deletions
12
transport.go
12
transport.go
|
@ -244,14 +244,16 @@ func (t *Transport) runSendQueue() {
|
|||
func (t *Transport) Close() error {
|
||||
t.close(errors.New("closing"))
|
||||
if t.createdConn {
|
||||
if err := t.conn.Close(); err != nil {
|
||||
if err := t.Conn.Close(); err != nil {
|
||||
return err
|
||||
}
|
||||
} else {
|
||||
} else if t.conn != nil {
|
||||
t.conn.SetReadDeadline(time.Now())
|
||||
defer func() { t.conn.SetReadDeadline(time.Time{}) }()
|
||||
}
|
||||
<-t.listening // wait until listening returns
|
||||
if t.listening != nil {
|
||||
<-t.listening // wait until listening returns
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
|
@ -280,7 +282,9 @@ func (t *Transport) close(e error) {
|
|||
return
|
||||
}
|
||||
|
||||
t.handlerMap.Close(e)
|
||||
if t.handlerMap != nil {
|
||||
t.handlerMap.Close(e)
|
||||
}
|
||||
if t.server != nil {
|
||||
t.server.setCloseError(e)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue