Searched refs:otp (Results 1 – 2 of 2) sorted by relevance
1853 tcpcb_to_otcpcb(struct tcpcb *tp, struct otcpcb *otp) in tcpcb_to_otcpcb() argument1855 otp->t_segq = (uint32_t)VM_KERNEL_ADDRPERM(tp->t_segq.lh_first); in tcpcb_to_otcpcb()1856 otp->t_dupacks = tp->t_dupacks; in tcpcb_to_otcpcb()1857 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_otcpcb()1858 otp->t_timer[TCPT_PERSIST_EXT] = tp->t_timer[TCPT_PERSIST]; in tcpcb_to_otcpcb()1859 otp->t_timer[TCPT_KEEP_EXT] = tp->t_timer[TCPT_KEEP]; in tcpcb_to_otcpcb()1860 otp->t_timer[TCPT_2MSL_EXT] = tp->t_timer[TCPT_2MSL]; in tcpcb_to_otcpcb()1861 otp->t_inpcb = in tcpcb_to_otcpcb()1863 otp->t_state = tp->t_state; in tcpcb_to_otcpcb()1864 otp->t_flags = tp->t_flags; in tcpcb_to_otcpcb()[all …]
1455 struct tcpcb *otp; in tcp_connect() local1496 if (oinp != inp && (otp = intotcpcb(oinp)) != NULL && in tcp_connect()1497 otp->t_state == TCPS_TIME_WAIT && in tcp_connect()1498 ((int)(tcp_now - otp->t_starttime)) < tcp_msl && in tcp_connect()1499 (otp->t_flags & TF_RCVD_CC)) { in tcp_connect()1500 otp = tcp_close(otp); in tcp_connect()1589 struct tcpcb *otp; in tcp6_connect() local1633 if (oinp != inp && (otp = intotcpcb(oinp)) != NULL && in tcp6_connect()1634 otp->t_state == TCPS_TIME_WAIT && in tcp6_connect()1635 ((int)(tcp_now - otp->t_starttime)) < tcp_msl && in tcp6_connect()[all …]