add a method to the session that blocks until it is closed

This commit is contained in:
Marten Seemann 2017-06-15 19:11:22 +02:00
parent 95c3db90a8
commit cd02cc8f0f
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
5 changed files with 24 additions and 0 deletions

View file

@ -39,6 +39,9 @@ func (s *mockSession) run() error {
func (s *mockSession) WaitUntilHandshakeComplete() error {
return <-s.handshakeComplete
}
func (*mockSession) WaitUntilClosed() {
panic("not implemented")
}
func (s *mockSession) Close(e error) error {
if s.closed {
return nil