We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84bbdc2 commit f511ebcCopy full SHA for f511ebc
transport/v2rayquic/stream.go
@@ -14,11 +14,13 @@ type StreamWrapper struct {
14
15
func (s *StreamWrapper) Read(p []byte) (n int, err error) {
16
n, err = s.Stream.Read(p)
17
+ //nolint:staticcheck
18
return n, baderror.WrapQUIC(err)
19
}
20
21
func (s *StreamWrapper) Write(p []byte) (n int, err error) {
22
n, err = s.Stream.Write(p)
23
24
25
26
0 commit comments