-
In stream callback function, like typedef struct QUIC_STREAM_EVENT {
QUIC_STREAM_EVENT_TYPE Type;
union {
struct {
QUIC_STATUS Status;
QUIC_UINT62 ID; // <---- This?
BOOLEAN PeerAccepted : 1;
BOOLEAN RESERVED : 7;
} START_COMPLETE; |
Beta Was this translation helpful? Give feedback.
Answered by
nibanks
Dec 30, 2021
Replies: 1 comment 1 reply
-
There is a GetParam for the stream to query it's ID. The API isn't super efficient, so I'd recommend caching it if you need it often. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ami-GS
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is a GetParam for the stream to query it's ID. The API isn't super efficient, so I'd recommend caching it if you need it often.