(e quic.StreamErrorCode)
| 88 | } |
| 89 | |
| 90 | func (s *stateTrackingStream) CancelWrite(e quic.StreamErrorCode) { |
| 91 | s.closeSend(&quic.StreamError{StreamID: s.StreamID(), ErrorCode: e}) |
| 92 | s.Stream.CancelWrite(e) |
| 93 | } |
| 94 | |
| 95 | func (s *stateTrackingStream) Write(b []byte) (int, error) { |
| 96 | n, err := s.Stream.Write(b) |
nothing calls this directly
no test coverage detected