-
Could you please give more details about the differences between returning It said that by returning |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
If you consume the whole buffer, there is no difference between |
Beta Was this translation helpful? Give feedback.
If you consume the whole buffer, there is no difference between
QUIC_STATUS_SUCCESS
andQUIC_STATUS_CONTINUE
. If you partially consume the buffer and returnQUIC_STATUS_SUCCESS
then future receive callbacks are immediately paused. If you returnQUIC_STATUS_CONTINUE
the callbacks are not paused. The rest of the data you didn't consume will immediately be indicated in a new receive callback.