mock_stream.go 416 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package mocknet

import (
	"io"

	inet "github.com/jbenet/go-ipfs/p2p/net2"
)

// stream implements inet.Stream
type stream struct {
	io.Reader
	io.Writer
	conn *conn
}

func (s *stream) Close() error {
	s.conn.removeStream(s)
	if r, ok := (s.Reader).(io.Closer); ok {
		r.Close()
	}
	if w, ok := (s.Writer).(io.Closer); ok {
		return w.Close()
	}
	return nil
}

func (s *stream) Conn() inet.Conn {
	return s.conn
}