diff options
Diffstat (limited to 'net/dccp/ccids/ccid3.h')
-rw-r--r-- | net/dccp/ccids/ccid3.h | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/net/dccp/ccids/ccid3.h b/net/dccp/ccids/ccid3.h index 7cbf2b1329d9..ae99ec430371 100644 --- a/net/dccp/ccids/ccid3.h +++ b/net/dccp/ccids/ccid3.h | |||
@@ -117,6 +117,15 @@ struct ccid3_hc_tx_sock { | |||
117 | struct ccid3_options_received ccid3hctx_options_received; | 117 | struct ccid3_options_received ccid3hctx_options_received; |
118 | }; | 118 | }; |
119 | 119 | ||
120 | static inline struct ccid3_hc_tx_sock *ccid3_hc_tx_sk(const struct sock *sk) | ||
121 | { | ||
122 | struct ccid3_hc_tx_sock *hctx = ccid_priv(dccp_sk(sk)->dccps_hc_tx_ccid); | ||
123 | #ifdef CONFIG_IP_DCCP_CCID3_DEBUG | ||
124 | BUG_ON(hctx == NULL); | ||
125 | #endif | ||
126 | return hctx; | ||
127 | } | ||
128 | |||
120 | /* TFRC receiver states */ | 129 | /* TFRC receiver states */ |
121 | enum ccid3_hc_rx_states { | 130 | enum ccid3_hc_rx_states { |
122 | TFRC_RSTATE_NO_DATA = 1, | 131 | TFRC_RSTATE_NO_DATA = 1, |
@@ -161,14 +170,13 @@ struct ccid3_hc_rx_sock { | |||
161 | u32 ccid3hcrx_elapsed_time; | 170 | u32 ccid3hcrx_elapsed_time; |
162 | }; | 171 | }; |
163 | 172 | ||
164 | static inline struct ccid3_hc_tx_sock *ccid3_hc_tx_sk(const struct sock *sk) | ||
165 | { | ||
166 | return ccid_priv(dccp_sk(sk)->dccps_hc_tx_ccid); | ||
167 | } | ||
168 | |||
169 | static inline struct ccid3_hc_rx_sock *ccid3_hc_rx_sk(const struct sock *sk) | 173 | static inline struct ccid3_hc_rx_sock *ccid3_hc_rx_sk(const struct sock *sk) |
170 | { | 174 | { |
171 | return ccid_priv(dccp_sk(sk)->dccps_hc_rx_ccid); | 175 | struct ccid3_hc_rx_sock *hcrx = ccid_priv(dccp_sk(sk)->dccps_hc_rx_ccid); |
176 | #ifdef CONFIG_IP_DCCP_CCID3_DEBUG | ||
177 | BUG_ON(hcrx == NULL); | ||
178 | #endif | ||
179 | return hcrx; | ||
172 | } | 180 | } |
173 | 181 | ||
174 | #endif /* _DCCP_CCID3_H_ */ | 182 | #endif /* _DCCP_CCID3_H_ */ |