• Home
  • Raw
  • Download

Lines Matching refs:dp

54 	struct dccp_sock *dp = dccp_sk(sk);  in dccp_parse_options()  local
61 struct dccp_options_received *opt_recv = &dp->dccps_options_received; in dccp_parse_options()
152 dp->dccps_timestamp_echo = ntohl(opt_val); in dccp_parse_options()
153 dp->dccps_timestamp_time = dccp_timestamp(); in dccp_parse_options()
218 if (ccid_hc_rx_parse_options(dp->dccps_hc_rx_ccid, sk, in dccp_parse_options()
233 if (ccid_hc_tx_parse_options(dp->dccps_hc_tx_ccid, sk, in dccp_parse_options()
314 struct dccp_sock *dp = dccp_sk(sk); in dccp_insert_option_ndp() local
315 u64 ndp = dp->dccps_ndp_count; in dccp_insert_option_ndp()
318 ++dp->dccps_ndp_count; in dccp_insert_option_ndp()
320 dp->dccps_ndp_count = 0; in dccp_insert_option_ndp()
387 static int dccp_insert_option_timestamp_echo(struct dccp_sock *dp, in dccp_insert_option_timestamp_echo() argument
400 elapsed_time = dccp_timestamp() - dp->dccps_timestamp_time; in dccp_insert_option_timestamp_echo()
401 tstamp_echo = htonl(dp->dccps_timestamp_echo); in dccp_insert_option_timestamp_echo()
402 dp->dccps_timestamp_echo = 0; in dccp_insert_option_timestamp_echo()
433 struct dccp_sock *dp = dccp_sk(sk); in dccp_insert_option_ackvec() local
434 struct dccp_ackvec *av = dp->dccps_hc_rx_ackvec; in dccp_insert_option_ackvec()
455 len + dcb->dccpd_opt_len + skb->len > dp->dccps_mss_cache) { in dccp_insert_option_ackvec()
458 dcb->dccpd_opt_len, dp->dccps_mss_cache); in dccp_insert_option_ackvec()
459 dp->dccps_sync_scheduled = 1; in dccp_insert_option_ackvec()
583 struct dccp_sock *dp = dccp_sk(sk); in dccp_insert_options() local
587 if (dp->dccps_send_ndp_count && dccp_insert_option_ndp(sk, skb)) in dccp_insert_options()
593 if (dccp_feat_insert_opts(dp, NULL, skb)) in dccp_insert_options()
610 if (dp->dccps_hc_rx_insert_options) { in dccp_insert_options()
611 if (ccid_hc_rx_insert_options(dp->dccps_hc_rx_ccid, sk, skb)) in dccp_insert_options()
613 dp->dccps_hc_rx_insert_options = 0; in dccp_insert_options()
616 if (dp->dccps_timestamp_echo != 0 && in dccp_insert_options()
617 dccp_insert_option_timestamp_echo(dp, NULL, skb)) in dccp_insert_options()