Commit f3ad3d35 authored by David Schinazi's avatar David Schinazi Committed by Commit Bot

Update netlog documentation for QUIC ACK frames

This is a followup to https://crrev.com/c/2337542
which forgot to update the documentation.

R=nharper@chromium.org

Bug: 1112925
Change-Id: Id1ed5fe2421367a26828da85ebae257add8c3bd4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2340424
Commit-Queue: David Schinazi <dschinazi@chromium.org>
Commit-Queue: Nick Harper <nharper@chromium.org>
Auto-Submit: David Schinazi <dschinazi@chromium.org>
Reviewed-by: default avatarNick Harper <nharper@chromium.org>
Cr-Commit-Position: refs/heads/master@{#795294}
parent c1a98818
...@@ -1843,37 +1843,29 @@ EVENT_TYPE(QUIC_SESSION_STREAM_FRAME_COALESCED) ...@@ -1843,37 +1843,29 @@ EVENT_TYPE(QUIC_SESSION_STREAM_FRAME_COALESCED)
// Session received an ACK frame. // Session received an ACK frame.
// { // {
// "sent_info": <Details of packet sent by the peer> // "largest_observed": <The largest packet number of a packet the peer has
// { // received, a.k.a. Largest Acknowledged>,
// "least_unacked": <Lowest sequence number of a packet sent by the peer // "smallest_observed": <The smallest packet number covered by this ACK>,
// for which it has not received an ACK>, // "delta_time_largest_observed_us": <Time between when the largest
// } // packet number was received and the ACK sent, a.k.a. Ack Delay>,
// "received_info": <Details of packet received by the peer> // "missing_packets": <List of packet numbers of packets between
// { // smallest_observed and largest_observed which were not received>,
// "largest_observed": <The largest sequence number of a packet received // "received_packet_times": <List of dictionaries containing
// by (or inferred by) the peer>, // "packet_number" and "received" timestamps (if enabled)>,
// "missing": <List of sequence numbers of packets lower than
// largest_observed which have not been received by the
// peer>,
// }
// } // }
EVENT_TYPE(QUIC_SESSION_ACK_FRAME_RECEIVED) EVENT_TYPE(QUIC_SESSION_ACK_FRAME_RECEIVED)
// Session sent an ACK frame. // Session sent an ACK frame.
// { // {
// "sent_info": <Details of packet sent by the peer> // "largest_observed": <The largest packet number of a packet we have
// { // received, a.k.a. Largest Acknowledged>,
// "least_unacked": <Lowest sequence number of a packet sent by the peer // "smallest_observed": <The smallest packet number covered by this ACK>,
// for which it has not received an ACK>, // "delta_time_largest_observed_us": <Time between when the largest
// } // packet number was received and the ACK sent, a.k.a. Ack Delay>,
// "received_info": <Details of packet received by the peer> // "missing_packets": <List of packet numbers of packets between
// { // smallest_observed and largest_observed which were not received>,
// "largest_observed": <The largest sequence number of a packet received // "received_packet_times": <List of dictionaries containing
// by (or inferred by) the peer>, // "packet_number" and "received" timestamps (if enabled)>,
// "missing": <List of sequence numbers of packets lower than
// largest_observed which have not been received by the
// peer>,
// }
// } // }
EVENT_TYPE(QUIC_SESSION_ACK_FRAME_SENT) EVENT_TYPE(QUIC_SESSION_ACK_FRAME_SENT)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment