ccid3.h (8dbc16033e35c7443cd56cb5ba308bb19cb7b469) | ccid3.h (66a377c5041e1e399633153c8b500d457281e7c1) |
---|---|
1/* 2 * net/dccp/ccids/ccid3.h 3 * 4 * Copyright (c) 2005-6 The University of Waikato, Hamilton, New Zealand. 5 * 6 * An implementation of the DCCP protocol 7 * 8 * This code has been developed by the University of Waikato WAND --- 106 unchanged lines hidden (view full) --- 115 struct ccid3_options_received ccid3hctx_options_received; 116}; 117 118struct ccid3_hc_rx_sock { 119 struct tfrc_rx_info ccid3hcrx_tfrc; 120#define ccid3hcrx_x_recv ccid3hcrx_tfrc.tfrcrx_x_recv 121#define ccid3hcrx_rtt ccid3hcrx_tfrc.tfrcrx_rtt 122#define ccid3hcrx_p ccid3hcrx_tfrc.tfrcrx_p | 1/* 2 * net/dccp/ccids/ccid3.h 3 * 4 * Copyright (c) 2005-6 The University of Waikato, Hamilton, New Zealand. 5 * 6 * An implementation of the DCCP protocol 7 * 8 * This code has been developed by the University of Waikato WAND --- 106 unchanged lines hidden (view full) --- 115 struct ccid3_options_received ccid3hctx_options_received; 116}; 117 118struct ccid3_hc_rx_sock { 119 struct tfrc_rx_info ccid3hcrx_tfrc; 120#define ccid3hcrx_x_recv ccid3hcrx_tfrc.tfrcrx_x_recv 121#define ccid3hcrx_rtt ccid3hcrx_tfrc.tfrcrx_rtt 122#define ccid3hcrx_p ccid3hcrx_tfrc.tfrcrx_p |
123 u64 ccid3hcrx_seqno_last_counter:48, | 123 u64 ccid3hcrx_seqno_nonloss:48, 124 ccid3hcrx_ccval_nonloss:4, |
124 ccid3hcrx_state:8, | 125 ccid3hcrx_state:8, |
125 ccid3hcrx_last_counter:4; | 126 ccid3hcrx_ccval_last_counter:4; |
126 u32 ccid3hcrx_bytes_recv; 127 struct timeval ccid3hcrx_tstamp_last_feedback; 128 struct timeval ccid3hcrx_tstamp_last_ack; 129 struct list_head ccid3hcrx_hist; 130 struct list_head ccid3hcrx_li_hist; 131 u16 ccid3hcrx_s; 132 u32 ccid3hcrx_pinv; 133 u32 ccid3hcrx_elapsed_time; --- 13 unchanged lines hidden --- | 127 u32 ccid3hcrx_bytes_recv; 128 struct timeval ccid3hcrx_tstamp_last_feedback; 129 struct timeval ccid3hcrx_tstamp_last_ack; 130 struct list_head ccid3hcrx_hist; 131 struct list_head ccid3hcrx_li_hist; 132 u16 ccid3hcrx_s; 133 u32 ccid3hcrx_pinv; 134 u32 ccid3hcrx_elapsed_time; --- 13 unchanged lines hidden --- |