Searched refs:otp (Results 1 – 2 of 2) sorted by relevance
1879 tcpcb_to_otcpcb(struct tcpcb *tp, struct otcpcb *otp) in tcpcb_to_otcpcb() argument1881 otp->t_segq = (uint32_t)VM_KERNEL_ADDRHASH(tp->t_segq.lh_first); in tcpcb_to_otcpcb()1882 otp->t_dupacks = tp->t_dupacks; in tcpcb_to_otcpcb()1883 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_otcpcb()1884 otp->t_timer[TCPT_PERSIST_EXT] = tp->t_timer[TCPT_PERSIST]; in tcpcb_to_otcpcb()1885 otp->t_timer[TCPT_KEEP_EXT] = tp->t_timer[TCPT_KEEP]; in tcpcb_to_otcpcb()1886 otp->t_timer[TCPT_2MSL_EXT] = tp->t_timer[TCPT_2MSL]; in tcpcb_to_otcpcb()1887 otp->t_inpcb = in tcpcb_to_otcpcb()1889 otp->t_state = tp->t_state; in tcpcb_to_otcpcb()1890 otp->t_flags = tp->t_flags; in tcpcb_to_otcpcb()[all …]
1488 struct tcpcb *otp; in tcp_connect() local1529 if (oinp != inp && (otp = intotcpcb(oinp)) != NULL && in tcp_connect()1530 otp->t_state == TCPS_TIME_WAIT && in tcp_connect()1531 ((int)(tcp_now - otp->t_starttime)) < tcp_msl && in tcp_connect()1532 (otp->t_flags & TF_RCVD_CC)) { in tcp_connect()1533 otp = tcp_close(otp); in tcp_connect()1623 struct tcpcb *otp; in tcp6_connect() local1667 if (oinp != inp && (otp = intotcpcb(oinp)) != NULL && in tcp6_connect()1668 otp->t_state == TCPS_TIME_WAIT && in tcp6_connect()1669 ((int)(tcp_now - otp->t_starttime)) < tcp_msl && in tcp6_connect()[all …]