mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
return a quic.ConnectionState from Session.ConnectionState()
This commit is contained in:
parent
d7948d627a
commit
539097fc6e
8 changed files with 22 additions and 27 deletions
|
@ -5,12 +5,12 @@
|
|||
package mocks
|
||||
|
||||
import (
|
||||
tls "crypto/tls"
|
||||
reflect "reflect"
|
||||
|
||||
gomock "github.com/golang/mock/gomock"
|
||||
handshake "github.com/lucas-clemente/quic-go/internal/handshake"
|
||||
protocol "github.com/lucas-clemente/quic-go/internal/protocol"
|
||||
qtls "github.com/marten-seemann/qtls"
|
||||
)
|
||||
|
||||
// MockCryptoSetup is a mock of CryptoSetup interface
|
||||
|
@ -63,10 +63,10 @@ func (mr *MockCryptoSetupMockRecorder) Close() *gomock.Call {
|
|||
}
|
||||
|
||||
// ConnectionState mocks base method
|
||||
func (m *MockCryptoSetup) ConnectionState() tls.ConnectionState {
|
||||
func (m *MockCryptoSetup) ConnectionState() qtls.ConnectionState {
|
||||
m.ctrl.T.Helper()
|
||||
ret := m.ctrl.Call(m, "ConnectionState")
|
||||
ret0, _ := ret[0].(tls.ConnectionState)
|
||||
ret0, _ := ret[0].(qtls.ConnectionState)
|
||||
return ret0
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue