Skip to content

PERF_COUNTERS UDP_RECV_EVENTS and UDP_SEND_CALLS meaning #4713

Closed Answered by nibanks
akrisfx asked this question in Q&A
Discussion options

You must be logged in to vote

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:

typedef enum QUIC_PERFORMANCE_COUNTERS {
    ...
    QUIC_PERF_COUNTER_UDP_RECV,             // Total UDP datagrams received.
    QUIC_PERF_COUNTER_UDP_SEND,             // Total UDP datagrams sent.

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@akrisfx
Comment options

@akrisfx
Comment options

Answer selected by akrisfx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants