aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ccids/ccid3.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/dccp/ccids/ccid3.h')
-rw-r--r--net/dccp/ccids/ccid3.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/net/dccp/ccids/ccid3.h b/net/dccp/ccids/ccid3.h
index 1773a8dd36d8..0c4fadd85f94 100644
--- a/net/dccp/ccids/ccid3.h
+++ b/net/dccp/ccids/ccid3.h
@@ -124,25 +124,21 @@ enum ccid3_hc_rx_states {
124 * 124 *
125 * @last_counter - Tracks window counter (RFC 4342, 8.1) 125 * @last_counter - Tracks window counter (RFC 4342, 8.1)
126 * @state - Receiver state, one of %ccid3_hc_rx_states 126 * @state - Receiver state, one of %ccid3_hc_rx_states
127 * @bytes_recv - Total sum of DCCP payload bytes
128 * @x_recv - Receiver estimate of send rate (RFC 3448, sec. 4.3) 127 * @x_recv - Receiver estimate of send rate (RFC 3448, sec. 4.3)
129 * @rtt - Receiver estimate of RTT 128 * @rtt - Receiver estimate of RTT
130 * @tstamp_last_feedback - Time at which last feedback was sent 129 * @tstamp_last_feedback - Time at which last feedback was sent
131 * @hist - Packet history (loss detection + RTT sampling) 130 * @hist - Packet history (loss detection + RTT sampling)
132 * @li_hist - Loss Interval database 131 * @li_hist - Loss Interval database
133 * @s - Received packet size in bytes
134 * @p_inverse - Inverse of Loss Event Rate (RFC 4342, sec. 8.5) 132 * @p_inverse - Inverse of Loss Event Rate (RFC 4342, sec. 8.5)
135 */ 133 */
136struct ccid3_hc_rx_sock { 134struct ccid3_hc_rx_sock {
137 u8 last_counter:4; 135 u8 last_counter:4;
138 enum ccid3_hc_rx_states state:8; 136 enum ccid3_hc_rx_states state:8;
139 u32 bytes_recv;
140 u32 x_recv; 137 u32 x_recv;
141 u32 rtt; 138 u32 rtt;
142 ktime_t tstamp_last_feedback; 139 ktime_t tstamp_last_feedback;
143 struct tfrc_rx_hist hist; 140 struct tfrc_rx_hist hist;
144 struct tfrc_loss_hist li_hist; 141 struct tfrc_loss_hist li_hist;
145 u16 s;
146#define p_inverse li_hist.i_mean 142#define p_inverse li_hist.i_mean
147}; 143};
148 144