expose the tls.ConnectionState

This commit is contained in:
Marten Seemann 2019-03-25 11:49:51 +01:00
parent 3f4b6d1df8
commit 09574a6653
10 changed files with 116 additions and 21 deletions

View file

@ -5,6 +5,7 @@
package mocks
import (
tls "crypto/tls"
reflect "reflect"
gomock "github.com/golang/mock/gomock"
@ -64,10 +65,10 @@ func (mr *MockCryptoSetupMockRecorder) Close() *gomock.Call {
}
// ConnectionState mocks base method
func (m *MockCryptoSetup) ConnectionState() handshake.ConnectionState {
func (m *MockCryptoSetup) ConnectionState() tls.ConnectionState {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "ConnectionState")
ret0, _ := ret[0].(handshake.ConnectionState)
ret0, _ := ret[0].(tls.ConnectionState)
return ret0
}