-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better acks, better chunk inserts & larger buffers #33
Conversation
} | ||
} | ||
|
||
if ok && pk.acked2 { | ||
delete(p.packets, pn) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm deleting this because I see no more use for use for storing this data. @ekr, can you confirm that this is the case, or is there something I am forgetting?
I wanted to acknowledge receipt of this. I have to do Internet Drafts between now and Monday, so I won't be able to look till next week, but I will do so then. |
I have tacked on an improvement to |
When selecting the number of frames and acks to be transmitted, the header size and AEAD overhead were not considered when determining the space left in the packet.
Problem was that it was decied to generate an ack frame BEFORE it was known that there was space to put acks in the packet. This resulted in an empty rs slice, causing errors
should now be able to handle ack rangesx
This reverts commit f5d96d2.
3454452
to
f9bb6f2
Compare
When selecting the number of frames and acks to be transmitted, the header size and AEAD overhead were not considered when determining the space left in the packet.
Problem was that it was decied to generate an ack frame BEFORE it was known that there was space to put acks in the packet. This resulted in an empty rs slice, causing errors
should now be able to handle ack rangesx
This reverts commit f5d96d2.
Now included in #37 |
Prevents ACK generation processing from exploding to solve #29 , and increases UDP buffers in size to solve #32.
This PR is build on top of #30