mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
add a method to the session that blocks until it is closed
This commit is contained in:
parent
95c3db90a8
commit
cd02cc8f0f
5 changed files with 24 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue