mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
increase the size of the send queue
This commit is contained in:
parent
53b1cbb501
commit
37337597bd
2 changed files with 6 additions and 4 deletions
|
@ -18,7 +18,7 @@ type sendQueue struct {
|
|||
|
||||
var _ sender = &sendQueue{}
|
||||
|
||||
const sendQueueCapacity = 1
|
||||
const sendQueueCapacity = 8
|
||||
|
||||
func newSendQueue(conn sendConn) sender {
|
||||
return &sendQueue{
|
||||
|
|
|
@ -43,10 +43,12 @@ var _ = Describe("Send Queue", func() {
|
|||
})
|
||||
|
||||
It("panics when Send() is called although there's no space in the queue", func() {
|
||||
for i := 0; i < sendQueueCapacity; i++ {
|
||||
Expect(q.WouldBlock()).To(BeFalse())
|
||||
q.Send(getPacket([]byte("foobar1")))
|
||||
q.Send(getPacket([]byte("foobar")))
|
||||
}
|
||||
Expect(q.WouldBlock()).To(BeTrue())
|
||||
Expect(func() { q.Send(getPacket([]byte("foobar2"))) }).To(Panic())
|
||||
Expect(func() { q.Send(getPacket([]byte("raboof"))) }).To(Panic())
|
||||
})
|
||||
|
||||
It("signals when sending is possible again", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue