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:
Marten Seemann 2020-02-11 11:50:57 +07:00
parent 077504f557
commit d642bf9098
10 changed files with 112 additions and 103 deletions

View file

@ -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()
}
}
}