mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
drop support for gQUIC
This commit is contained in:
parent
8f8ed03254
commit
3266e36811
195 changed files with 2638 additions and 35430 deletions
|
@ -195,9 +195,7 @@ func (s *sendStream) getDataForWriting(maxBytes protocol.ByteCount) ([]byte, boo
|
|||
return nil, s.finishedWriting && !s.finSent
|
||||
}
|
||||
|
||||
if !s.version.IsCryptoStream(s.streamID) {
|
||||
maxBytes = utils.MinByteCount(maxBytes, s.flowController.SendWindowSize())
|
||||
}
|
||||
maxBytes = utils.MinByteCount(maxBytes, s.flowController.SendWindowSize())
|
||||
if maxBytes == 0 {
|
||||
return nil, false
|
||||
}
|
||||
|
@ -286,9 +284,6 @@ func (s *sendStream) handleStopSendingFrameImpl(frame *wire.StopSendingFrame) bo
|
|||
error: fmt.Errorf("Stream %d was reset with error code %d", s.streamID, frame.ErrorCode),
|
||||
}
|
||||
errorCode := errorCodeStopping
|
||||
if !s.version.UsesIETFFrameFormat() {
|
||||
errorCode = errorCodeStoppingGQUIC
|
||||
}
|
||||
completed, _ := s.cancelWriteImpl(errorCode, writeErr)
|
||||
return completed
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue