Lines Matching refs:xt

2656 			struct xtcpcb xt;  in tcp_pcblist()  local
2658 tcp_inptoxtp(inp, &xt); in tcp_pcblist()
2659 error = SYSCTL_OUT(req, &xt, sizeof xt); in tcp_pcblist()
3970 tcp_inptoxtp(const struct inpcb *inp, struct xtcpcb *xt) in tcp_inptoxtp() argument
3975 bzero(xt, sizeof(*xt)); in tcp_inptoxtp()
3976 xt->t_state = tp->t_state; in tcp_inptoxtp()
3977 xt->t_logstate = tcp_get_bblog_state(tp); in tcp_inptoxtp()
3978 xt->t_flags = tp->t_flags; in tcp_inptoxtp()
3979 xt->t_sndzerowin = tp->t_sndzerowin; in tcp_inptoxtp()
3980 xt->t_sndrexmitpack = tp->t_sndrexmitpack; in tcp_inptoxtp()
3981 xt->t_rcvoopack = tp->t_rcvoopack; in tcp_inptoxtp()
3982 xt->t_rcv_wnd = tp->rcv_wnd; in tcp_inptoxtp()
3983 xt->t_snd_wnd = tp->snd_wnd; in tcp_inptoxtp()
3984 xt->t_snd_cwnd = tp->snd_cwnd; in tcp_inptoxtp()
3985 xt->t_snd_ssthresh = tp->snd_ssthresh; in tcp_inptoxtp()
3986 xt->t_dsack_bytes = tp->t_dsack_bytes; in tcp_inptoxtp()
3987 xt->t_dsack_tlp_bytes = tp->t_dsack_tlp_bytes; in tcp_inptoxtp()
3988 xt->t_dsack_pack = tp->t_dsack_pack; in tcp_inptoxtp()
3989 xt->t_maxseg = tp->t_maxseg; in tcp_inptoxtp()
3990 xt->xt_ecn = (tp->t_flags2 & TF2_ECN_PERMIT) ? 1 : 0 + in tcp_inptoxtp()
3996 xt->where = (tp->t_timers[which] - now) / SBT_1MS; \ in tcp_inptoxtp()
3998 xt->where = 0; \ in tcp_inptoxtp()
4006 xt->t_rcvtime = 1000 * (ticks - tp->t_rcvtime) / hz; in tcp_inptoxtp()
4008 xt->xt_encaps_port = tp->t_port; in tcp_inptoxtp()
4009 bcopy(tp->t_fb->tfb_tcp_block_name, xt->xt_stack, in tcp_inptoxtp()
4011 bcopy(CC_ALGO(tp)->name, xt->xt_cc, TCP_CA_NAME_MAX); in tcp_inptoxtp()
4013 (void)tcp_log_get_id(tp, xt->xt_logid); in tcp_inptoxtp()
4016 xt->xt_len = sizeof(struct xtcpcb); in tcp_inptoxtp()
4017 in_pcbtoxinpcb(inp, &xt->xt_inp); in tcp_inptoxtp()