Replies: 1 comment
-
|
Okay, it was my mistake, all is good. User specified context can be accessed at |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi! I need help with understand how to correctly cleanup buffers after sending data via
DatagramSend. What is the correct way of doing that?I traced a bit of internal API calls and can see that my send request in the end is wrapped in
QUIC_SEND_REQUESTwhich is just appended to tail of existing events, seems like without copying. In result I cannot just free my buffer until it got processed by quic internals and I get some completion notification. Right now I'm getting dbg interrupt atQuicDatagramFrameEncodeExwhenBuffers[i].Bufferis0x00I was expecting to find something similar to
QUIC_STREAM_EVENT_SEND_COMPLETE, triedQUIC_CONNECTION_EVENT_DATAGRAM_SEND_STATE_CHANGEDbut didn't found my marker inEvent->DATAGRAM_SEND_STATE_CHANGED.ClientContext.Beta Was this translation helpful? Give feedback.
All reactions