mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
implement a send queue to send packet asynchronously
This commit is contained in:
parent
f4621e280e
commit
00c19f7241
4 changed files with 351 additions and 221 deletions
39
send_queue.go
Normal file
39
send_queue.go
Normal file
|
@ -0,0 +1,39 @@
|
|||
package quic
|
||||
|
||||
type sendQueue struct {
|
||||
queue chan *packedPacket
|
||||
closeChan chan struct{}
|
||||
conn connection
|
||||
}
|
||||
|
||||
func newSendQueue(conn connection) *sendQueue {
|
||||
s := &sendQueue{
|
||||
conn: conn,
|
||||
closeChan: make(chan struct{}),
|
||||
queue: make(chan *packedPacket, 1),
|
||||
}
|
||||
return s
|
||||
}
|
||||
|
||||
func (h *sendQueue) Send(p *packedPacket) {
|
||||
h.queue <- p
|
||||
}
|
||||
|
||||
func (h *sendQueue) Run() error {
|
||||
var p *packedPacket
|
||||
for {
|
||||
select {
|
||||
case <-h.closeChan:
|
||||
return nil
|
||||
case p = <-h.queue:
|
||||
}
|
||||
if err := h.conn.Write(p.raw); err != nil {
|
||||
return err
|
||||
}
|
||||
p.buffer.Release()
|
||||
}
|
||||
}
|
||||
|
||||
func (h *sendQueue) Close() {
|
||||
close(h.closeChan)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue