rename the Session to Connection

This commit is contained in:
Marten Seemann
2022-03-26 14:35:01 +01:00
parent 42f3159497
commit e71c236232
19 changed files with 73 additions and 73 deletions

View File

@@ -138,10 +138,10 @@ func (mr *MockEarlySessionMockRecorder) LocalAddr() *gomock.Call {
}
// NextSession mocks base method.
func (m *MockEarlySession) NextSession() quic.Session {
func (m *MockEarlySession) NextSession() quic.Connection {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "NextSession")
ret0, _ := ret[0].(quic.Session)
ret0, _ := ret[0].(quic.Connection)
return ret0
}