Home
last modified time | relevance | path

Searched refs:xt (Results 1 – 3 of 3) sorted by relevance

/xnu-8796.141.3/bsd/netinet/
H A Din_pcblist.c230 tcpcb_to_xtcpcb_n(struct tcpcb *tp, struct xtcpcb_n *xt) in tcpcb_to_xtcpcb_n() argument
232 xt->xt_len = sizeof(struct xtcpcb_n); in tcpcb_to_xtcpcb_n()
233 xt->xt_kind = XSO_TCPCB; in tcpcb_to_xtcpcb_n()
235 xt->t_segq = (uint32_t)VM_KERNEL_ADDRPERM(tp->t_segq.lh_first); in tcpcb_to_xtcpcb_n()
236 xt->t_dupacks = tp->t_dupacks; in tcpcb_to_xtcpcb_n()
237 xt->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_xtcpcb_n()
238 xt->t_timer[TCPT_PERSIST_EXT] = tp->t_timer[TCPT_PERSIST]; in tcpcb_to_xtcpcb_n()
239 xt->t_timer[TCPT_KEEP_EXT] = tp->t_timer[TCPT_KEEP]; in tcpcb_to_xtcpcb_n()
240 xt->t_timer[TCPT_2MSL_EXT] = tp->t_timer[TCPT_2MSL]; in tcpcb_to_xtcpcb_n()
241 xt->t_state = tp->t_state; in tcpcb_to_xtcpcb_n()
[all …]
H A Dtcp_subr.c1973 struct xtcpcb xt; variable
1992 bzero(&xt, sizeof(xt));
1993 xt.xt_len = sizeof(xt);
1995 inpcb_to_compat(inp, &xt.xt_inp);
1999 &xt.xt_tp);
2001 bzero((char *) &xt.xt_tp, sizeof(xt.xt_tp));
2004 sotoxsocket(inp->inp_socket, &xt.xt_socket);
2009 error = SYSCTL_OUT(req, &xt, sizeof(xt));
2158 struct xtcpcb64 xt; variable
2176 bzero(&xt, sizeof(xt));
[all …]
/xnu-8796.141.3/bsd/net/
H A Dntstat.c7204 nstat_userland_to_xtcpcb_n(nstat_flow_data *flow_data, struct xtcpcb_n *xt) in nstat_userland_to_xtcpcb_n() argument
7207 xt->xt_len = sizeof(struct xtcpcb_n); in nstat_userland_to_xtcpcb_n()
7208 xt->xt_kind = XSO_TCPCB; in nstat_userland_to_xtcpcb_n()
7209 xt->t_state = desc->state; in nstat_userland_to_xtcpcb_n()
7210 xt->snd_wnd = desc->txwindow; in nstat_userland_to_xtcpcb_n()
7211 xt->snd_cwnd = desc->txcwindow; in nstat_userland_to_xtcpcb_n()
7299 struct xtcpcb_n *xt = (struct xtcpcb_n *) ADVANCE64(xsostats, sizeof(*xsostats)); in nstat_userland_list_snapshot() local
7313 nstat_userland_to_xtcpcb_n(flow_data, xt); in nstat_userland_list_snapshot()