Lines Matching refs:tfrc
519 struct tfrc_tx_info tfrc; in ccid3_hc_tx_getsockopt() local
524 if (len < sizeof(tfrc)) in ccid3_hc_tx_getsockopt()
526 memset(&tfrc, 0, sizeof(tfrc)); in ccid3_hc_tx_getsockopt()
527 tfrc.tfrctx_x = hc->tx_x; in ccid3_hc_tx_getsockopt()
528 tfrc.tfrctx_x_recv = hc->tx_x_recv; in ccid3_hc_tx_getsockopt()
529 tfrc.tfrctx_x_calc = hc->tx_x_calc; in ccid3_hc_tx_getsockopt()
530 tfrc.tfrctx_rtt = hc->tx_rtt; in ccid3_hc_tx_getsockopt()
531 tfrc.tfrctx_p = hc->tx_p; in ccid3_hc_tx_getsockopt()
532 tfrc.tfrctx_rto = hc->tx_t_rto; in ccid3_hc_tx_getsockopt()
533 tfrc.tfrctx_ipi = hc->tx_t_ipi; in ccid3_hc_tx_getsockopt()
534 len = sizeof(tfrc); in ccid3_hc_tx_getsockopt()
535 val = &tfrc; in ccid3_hc_tx_getsockopt()