Lines Matching defs:bbr_sendmap
60 struct bbr_sendmap { struct
63 uint32_t r_start; /* Sequence number of the segment */
64 uint32_t r_end; /* End seq, this is 1 beyond actually */
66 uint32_t r_rtr_bytes; /* How many bytes have been retransmitted */
67 uint32_t r_delivered; /* Delivered amount at send */
69 uint32_t r_del_time; /* The time of the last delivery update */
70 uint8_t r_rtr_cnt:4, /* Retran count, index this -1 to get time
72 r_rtt_not_allowed:1, /* No rtt measurement allowed */
73 r_is_drain:1, /* In a draining cycle */
74 r_app_limited:1,/* We went app limited */
75 r_ts_valid:1; /* Timestamp field is valid (r_del_ack_ts) */
76 uint8_t r_dupack; /* Dup ack count */
77 uint8_t r_in_tmap:1, /* Flag to see if its in the r_tnext array */
78 r_is_smallmap:1,/* Was logged as a small-map send-map item */
79 r_is_gain:1, /* Was in gain cycle */
103 TAILQ_HEAD(bbr_head, bbr_sendmap); argument