Searched refs:otp (Results 1 – 2 of 2) sorted by relevance
1910 tcpcb_to_otcpcb(struct tcpcb *tp, struct otcpcb *otp) in tcpcb_to_otcpcb() argument1912 otp->t_segq = (uint32_t)VM_KERNEL_ADDRHASH(tp->t_segq.lh_first); in tcpcb_to_otcpcb()1913 otp->t_dupacks = tp->t_dupacks; in tcpcb_to_otcpcb()1914 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_otcpcb()1915 otp->t_timer[TCPT_PERSIST_EXT] = tp->t_timer[TCPT_PERSIST]; in tcpcb_to_otcpcb()1916 otp->t_timer[TCPT_KEEP_EXT] = tp->t_timer[TCPT_KEEP]; in tcpcb_to_otcpcb()1917 otp->t_timer[TCPT_2MSL_EXT] = tp->t_timer[TCPT_2MSL]; in tcpcb_to_otcpcb()1918 otp->t_inpcb = in tcpcb_to_otcpcb()1920 otp->t_state = tp->t_state; in tcpcb_to_otcpcb()1921 otp->t_flags = tp->t_flags; in tcpcb_to_otcpcb()[all …]
1487 struct tcpcb *otp; in tcp_connect() local1528 if (oinp != inp && (otp = intotcpcb(oinp)) != NULL && in tcp_connect()1529 otp->t_state == TCPS_TIME_WAIT && in tcp_connect()1530 ((int)(tcp_now - otp->t_starttime)) < tcp_msl && in tcp_connect()1531 (otp->t_flags & TF_RCVD_CC)) { in tcp_connect()1532 otp = tcp_close(otp); in tcp_connect()1620 struct tcpcb *otp; in tcp6_connect() local1664 if (oinp != inp && (otp = intotcpcb(oinp)) != NULL && in tcp6_connect()1665 otp->t_state == TCPS_TIME_WAIT && in tcp6_connect()1666 ((int)(tcp_now - otp->t_starttime)) < tcp_msl && in tcp6_connect()[all …]