mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
simplify content storage in packed packets
It's not necessary to store both the packetBuffer and the slice containing the raw data in the packet.
This commit is contained in:
parent
077504f557
commit
d642bf9098
10 changed files with 112 additions and 103 deletions
|
@ -1,7 +1,7 @@
|
|||
package quic
|
||||
|
||||
type sendQueue struct {
|
||||
queue chan *packedPacket
|
||||
queue chan *packetBuffer
|
||||
closeCalled chan struct{} // runStopped when Close() is called
|
||||
runStopped chan struct{} // runStopped when the run loop returns
|
||||
conn connection
|
||||
|
@ -12,12 +12,12 @@ func newSendQueue(conn connection) *sendQueue {
|
|||
conn: conn,
|
||||
runStopped: make(chan struct{}),
|
||||
closeCalled: make(chan struct{}),
|
||||
queue: make(chan *packedPacket, 1),
|
||||
queue: make(chan *packetBuffer, 1),
|
||||
}
|
||||
return s
|
||||
}
|
||||
|
||||
func (h *sendQueue) Send(p *packedPacket) {
|
||||
func (h *sendQueue) Send(p *packetBuffer) {
|
||||
h.queue <- p
|
||||
}
|
||||
|
||||
|
@ -34,10 +34,10 @@ func (h *sendQueue) Run() error {
|
|||
// make sure that all queued packets are actually sent out
|
||||
shouldClose = true
|
||||
case p := <-h.queue:
|
||||
if err := h.conn.Write(p.raw); err != nil {
|
||||
if err := h.conn.Write(p.Data); err != nil {
|
||||
return err
|
||||
}
|
||||
p.buffer.Release()
|
||||
p.Release()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue