remove unused ReceiveStream.CloseRemote method (#4357)

This commit is contained in:
Marten Seemann 2024-03-09 19:59:43 +09:30 committed by GitHub
parent 5fd5d7770d
commit 06b421411d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 15 deletions

View file

@ -292,10 +292,6 @@ func (s *receiveStream) handleResetStreamFrameImpl(frame *wire.ResetStreamFrame)
return newlyRcvdFinalOffset, nil
}
func (s *receiveStream) CloseRemote(offset protocol.ByteCount) {
s.handleStreamFrame(&wire.StreamFrame{Fin: true, Offset: offset})
}
func (s *receiveStream) SetReadDeadline(t time.Time) error {
s.mutex.Lock()
s.deadline = t

View file

@ -443,17 +443,6 @@ var _ = Describe("Receive Stream", func() {
Expect(atomic.LoadInt32(&numCompleted)).To(BeEquivalentTo(1))
})
})
It("closes when CloseRemote is called", func() {
mockFC.EXPECT().UpdateHighestReceived(protocol.ByteCount(0), true)
mockFC.EXPECT().AddBytesRead(protocol.ByteCount(0))
str.CloseRemote(0)
mockSender.EXPECT().onStreamCompleted(streamID)
b := make([]byte, 8)
n, err := strWithTimeout.Read(b)
Expect(n).To(BeZero())
Expect(err).To(MatchError(io.EOF))
})
})
Context("closing for shutdown", func() {