Searched refs:otp (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_subr.c1310 tcpcb_to_otcpcb(struct tcpcb *tp, struct otcpcb *otp) argument
1314 otp->t_segq = (u_int32_t)(uintptr_t)tp->t_segq.lh_first;
1315 otp->t_dupacks = tp->t_dupacks;
1317 otp->t_timer[i] = tp->t_timer[i];
1318 otp->t_inpcb = (_TCPCB_PTR(struct inpcb *))(uintptr_t)tp->t_inpcb;
1319 otp->t_state = tp->t_state;
1320 otp->t_flags = tp->t_flags;
1321 otp->t_force = tp->t_force;
1322 otp->snd_una = tp->snd_una;
1323 otp
1497 tcpcb_to_xtcpcb64(struct tcpcb *tp, struct xtcpcb64 *otp) argument
[all...]
H A Dtcp_usrreq.c894 struct tcpcb *otp; local
934 if (oinp != inp && (otp = intotcpcb(oinp)) != NULL &&
935 otp->t_state == TCPS_TIME_WAIT &&
936 ((int)(tcp_now - otp->t_starttime)) < tcp_msl &&
937 (otp->t_flags & TF_RCVD_CC))
938 otp = tcp_close(otp);
1013 struct tcpcb *otp; local
1048 if (oinp != inp && (otp = intotcpcb(oinp)) != NULL &&
1049 otp
[all...]

Completed in 24 milliseconds