Lines Matching refs:tfrc
532 struct tfrc_tx_info tfrc; in ccid3_hc_tx_getsockopt() local
537 if (len < sizeof(tfrc)) in ccid3_hc_tx_getsockopt()
539 memset(&tfrc, 0, sizeof(tfrc)); in ccid3_hc_tx_getsockopt()
540 tfrc.tfrctx_x = hc->tx_x; in ccid3_hc_tx_getsockopt()
541 tfrc.tfrctx_x_recv = hc->tx_x_recv; in ccid3_hc_tx_getsockopt()
542 tfrc.tfrctx_x_calc = hc->tx_x_calc; in ccid3_hc_tx_getsockopt()
543 tfrc.tfrctx_rtt = hc->tx_rtt; in ccid3_hc_tx_getsockopt()
544 tfrc.tfrctx_p = hc->tx_p; in ccid3_hc_tx_getsockopt()
545 tfrc.tfrctx_rto = hc->tx_t_rto; in ccid3_hc_tx_getsockopt()
546 tfrc.tfrctx_ipi = hc->tx_t_ipi; in ccid3_hc_tx_getsockopt()
547 len = sizeof(tfrc); in ccid3_hc_tx_getsockopt()
548 val = &tfrc; in ccid3_hc_tx_getsockopt()