-
Hello again
can we meaningfully equate them to |
Beta Was this translation helpful? Give feedback.
Answered by
nibanks
Dec 17, 2024
Replies: 1 comment 2 replies
-
No, you can't.
I'm pretty sure you just want: typedef enum QUIC_PERFORMANCE_COUNTERS {
...
QUIC_PERF_COUNTER_UDP_RECV, // Total UDP datagrams received.
QUIC_PERF_COUNTER_UDP_SEND, // Total UDP datagrams sent. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
akrisfx
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No, you can't.
QUIC_PERF_COUNTER_UDP_RECV_EVENTS
- This indicates how many receive callbacks QUIC gets from the platform. Each receive callback may have one or more UDP datagrams (and a single UDP datagram may have multiple QUIC packets).QUIC_PERF_COUNTER_UDP_SEND_CALLS
- This is the number of send API calls the app makes. Each call may result in many packets being sent out.I'm pretty sure you just want: