-
hello, If the sender sends a large data packet, does the receiver need to splice data packets received by myself? |
Beta Was this translation helpful? Give feedback.
Answered by
nibanks
Sep 28, 2021
Replies: 1 comment 6 replies
-
QUIC fragments stream data sent by an application into chunks that can fit into UDP datagrams. The peer QUIC stack then reassembles this data before delivering to the application. So, bottom line, the app is free to send a 1 GB buffer on a stream and the QUIC layer will handle breaking it up and reassembling as necessary. |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
zdh3303
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
QUIC fragments stream data sent by an application into chunks that can fit into UDP datagrams. The peer QUIC stack then reassembles this data before delivering to the application. So, bottom line, the app is free to send a 1 GB buffer on a stream and the QUIC layer will handle breaking it up and reassembling as necessary.