Lines Matching refs:dp
50 struct dccp_sock *dp = dccp_sk(sk); in dccp_parse_options() local
57 struct dccp_options_received *opt_recv = &dp->dccps_options_received; in dccp_parse_options()
148 dp->dccps_timestamp_echo = ntohl(opt_val); in dccp_parse_options()
149 dp->dccps_timestamp_time = dccp_timestamp(); in dccp_parse_options()
214 if (ccid_hc_rx_parse_options(dp->dccps_hc_rx_ccid, sk, in dccp_parse_options()
229 if (ccid_hc_tx_parse_options(dp->dccps_hc_tx_ccid, sk, in dccp_parse_options()
310 struct dccp_sock *dp = dccp_sk(sk); in dccp_insert_option_ndp() local
311 u64 ndp = dp->dccps_ndp_count; in dccp_insert_option_ndp()
314 ++dp->dccps_ndp_count; in dccp_insert_option_ndp()
316 dp->dccps_ndp_count = 0; in dccp_insert_option_ndp()
351 static int dccp_insert_option_timestamp_echo(struct dccp_sock *dp, in dccp_insert_option_timestamp_echo() argument
364 elapsed_time = dccp_timestamp() - dp->dccps_timestamp_time; in dccp_insert_option_timestamp_echo()
365 tstamp_echo = htonl(dp->dccps_timestamp_echo); in dccp_insert_option_timestamp_echo()
366 dp->dccps_timestamp_echo = 0; in dccp_insert_option_timestamp_echo()
397 struct dccp_sock *dp = dccp_sk(sk); in dccp_insert_option_ackvec() local
398 struct dccp_ackvec *av = dp->dccps_hc_rx_ackvec; in dccp_insert_option_ackvec()
419 len + dcb->dccpd_opt_len + skb->len > dp->dccps_mss_cache) { in dccp_insert_option_ackvec()
422 dcb->dccpd_opt_len, dp->dccps_mss_cache); in dccp_insert_option_ackvec()
423 dp->dccps_sync_scheduled = 1; in dccp_insert_option_ackvec()
547 struct dccp_sock *dp = dccp_sk(sk); in dccp_insert_options() local
551 if (dp->dccps_send_ndp_count && dccp_insert_option_ndp(sk, skb)) in dccp_insert_options()
557 if (dccp_feat_insert_opts(dp, NULL, skb)) in dccp_insert_options()
574 if (dp->dccps_hc_rx_insert_options) { in dccp_insert_options()
575 if (ccid_hc_rx_insert_options(dp->dccps_hc_rx_ccid, sk, skb)) in dccp_insert_options()
577 dp->dccps_hc_rx_insert_options = 0; in dccp_insert_options()
580 if (dp->dccps_timestamp_echo != 0 && in dccp_insert_options()
581 dccp_insert_option_timestamp_echo(dp, NULL, skb)) in dccp_insert_options()