mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 21:57:36 +03:00
don't export the qlog file when receiving a Version Negotiation packet
This commit is contained in:
parent
bb2a05af0a
commit
44eb324101
2 changed files with 6 additions and 6 deletions
10
session.go
10
session.go
|
@ -600,14 +600,14 @@ runLoop:
|
|||
}
|
||||
|
||||
s.handleCloseError(closeErr)
|
||||
if closeErr.err != errCloseForRecreating && s.qlogger != nil {
|
||||
if err := s.qlogger.Export(); err != nil {
|
||||
s.logger.Errorf("exporting qlog failed: %s", err)
|
||||
}
|
||||
}
|
||||
s.logger.Infof("Connection %s closed.", s.logID)
|
||||
s.cryptoStreamHandler.Close()
|
||||
s.sendQueue.Close()
|
||||
if s.qlogger != nil {
|
||||
if err := s.qlogger.Export(); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
return closeErr.err
|
||||
}
|
||||
|
||||
|
|
|
@ -480,7 +480,7 @@ var _ = Describe("Session", func() {
|
|||
sessionRunner.EXPECT().Remove(gomock.Any()).AnyTimes()
|
||||
cryptoSetup.EXPECT().Close()
|
||||
// don't EXPECT any calls to mconn.Write()
|
||||
qlogger.EXPECT().Export()
|
||||
// don't EXPECT any call to qlogger.Export()
|
||||
sess.closeForRecreating()
|
||||
Eventually(areSessionsRunning).Should(BeFalse())
|
||||
expectedRunErr = errCloseForRecreating
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue