Lines Matching defs:xt
2656 struct xtcpcb xt;
2658 tcp_inptoxtp(inp, &xt);
2659 error = SYSCTL_OUT(req, &xt, sizeof xt);
3966 tcp_inptoxtp(const struct inpcb *inp, struct xtcpcb *xt)
3971 bzero(xt, sizeof(*xt));
3972 xt->t_state = tp->t_state;
3973 xt->t_logstate = tcp_get_bblog_state(tp);
3974 xt->t_flags = tp->t_flags;
3975 xt->t_sndzerowin = tp->t_sndzerowin;
3976 xt->t_sndrexmitpack = tp->t_sndrexmitpack;
3977 xt->t_rcvoopack = tp->t_rcvoopack;
3978 xt->t_rcv_wnd = tp->rcv_wnd;
3979 xt->t_snd_wnd = tp->snd_wnd;
3980 xt->t_snd_cwnd = tp->snd_cwnd;
3981 xt->t_snd_ssthresh = tp->snd_ssthresh;
3982 xt->t_dsack_bytes = tp->t_dsack_bytes;
3983 xt->t_dsack_tlp_bytes = tp->t_dsack_tlp_bytes;
3984 xt->t_dsack_pack = tp->t_dsack_pack;
3985 xt->t_maxseg = tp->t_maxseg;
3986 xt->xt_ecn = (tp->t_flags2 & TF2_ECN_PERMIT) ? 1 : 0 +
3992 xt->where = (tp->t_timers[which] - now) / SBT_1MS; \
3994 xt->where = 0; \
4002 xt->t_rcvtime = 1000 * (ticks - tp->t_rcvtime) / hz;
4004 xt->xt_encaps_port = tp->t_port;
4005 bcopy(tp->t_fb->tfb_tcp_block_name, xt->xt_stack,
4007 bcopy(CC_ALGO(tp)->name, xt->xt_cc, TCP_CA_NAME_MAX);
4009 (void)tcp_log_get_id(tp, xt->xt_logid);
4012 xt->xt_len = sizeof(struct xtcpcb);
4013 in_pcbtoxinpcb(inp, &xt->xt_inp);