mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
move utils.Stream to quic.Stream
This commit is contained in:
parent
592ef45fdf
commit
cd465ae0b5
17 changed files with 73 additions and 80 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue