mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
handle the crypto stream separately in the packet packer
This commit is contained in:
parent
f68621485f
commit
25847cfc30
12 changed files with 123 additions and 137 deletions
|
@ -15,6 +15,7 @@ import (
|
|||
type sendStreamI interface {
|
||||
SendStream
|
||||
handleStopSendingFrame(*wire.StopSendingFrame)
|
||||
hasData() bool
|
||||
popStreamFrame(maxBytes protocol.ByteCount) (*wire.StreamFrame, bool)
|
||||
closeForShutdown(error)
|
||||
handleMaxStreamDataFrame(*wire.MaxStreamDataFrame)
|
||||
|
@ -181,6 +182,13 @@ func (s *sendStream) popStreamFrameImpl(maxBytes protocol.ByteCount) (bool /* co
|
|||
return frame.FinBit, frame, s.dataForWriting != nil
|
||||
}
|
||||
|
||||
func (s *sendStream) hasData() bool {
|
||||
s.mutex.Lock()
|
||||
hasData := len(s.dataForWriting) > 0
|
||||
s.mutex.Unlock()
|
||||
return hasData
|
||||
}
|
||||
|
||||
func (s *sendStream) getDataForWriting(maxBytes protocol.ByteCount) ([]byte, bool /* should send FIN */) {
|
||||
if s.dataForWriting == nil {
|
||||
return nil, s.finishedWriting && !s.finSent
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue