move utils.Stream to quic.Stream

This commit is contained in:
Marten Seemann 2017-02-20 18:05:49 +07:00
parent 592ef45fdf
commit cd465ae0b5
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
17 changed files with 73 additions and 80 deletions

View file

@ -32,13 +32,13 @@ func (s *mockSession) Close(e error) error {
s.closed = true
return nil
}
func (s *mockSession) AcceptStream() (utils.Stream, error) {
func (s *mockSession) AcceptStream() (Stream, error) {
panic("not implemented")
}
func (s *mockSession) OpenStream() (utils.Stream, error) {
func (s *mockSession) OpenStream() (Stream, error) {
return &stream{streamID: 1337}, nil
}
func (s *mockSession) OpenStreamSync() (utils.Stream, error) {
func (s *mockSession) OpenStreamSync() (Stream, error) {
panic("not implemented")
}
func (s *mockSession) RemoteAddr() net.Addr {