Lines Matching refs:tp

195 tcpcb_to_xtcpcb_n(struct tcpcb *tp, struct xtcpcb_n *xt)
202 xt->t_segq = (u_int32_t)(uintptr_t)tp->t_segq.lh_first;
203 xt->t_dupacks = tp->t_dupacks;
205 xt->t_timer[i] = tp->t_timer[i];
206 xt->t_state = tp->t_state;
207 xt->t_flags = tp->t_flags;
208 xt->t_force = tp->t_force;
209 xt->snd_una = tp->snd_una;
210 xt->snd_max = tp->snd_max;
211 xt->snd_nxt = tp->snd_nxt;
212 xt->snd_up = tp->snd_up;
213 xt->snd_wl1 = tp->snd_wl1;
214 xt->snd_wl2 = tp->snd_wl2;
215 xt->iss = tp->iss;
216 xt->irs = tp->irs;
217 xt->rcv_nxt = tp->rcv_nxt;
218 xt->rcv_adv = tp->rcv_adv;
219 xt->rcv_wnd = tp->rcv_wnd;
220 xt->rcv_up = tp->rcv_up;
221 xt->snd_wnd = tp->snd_wnd;
222 xt->snd_cwnd = tp->snd_cwnd;
223 xt->snd_ssthresh = tp->snd_ssthresh;
224 xt->t_maxopd = tp->t_maxopd;
225 xt->t_rcvtime = tp->t_rcvtime;
226 xt->t_starttime = tp->t_starttime;
227 xt->t_rtttime = tp->t_rtttime;
228 xt->t_rtseq = tp->t_rtseq;
229 xt->t_rxtcur = tp->t_rxtcur;
230 xt->t_maxseg = tp->t_maxseg;
231 xt->t_srtt = tp->t_srtt;
232 xt->t_rttvar = tp->t_rttvar;
233 xt->t_rxtshift = tp->t_rxtshift;
234 xt->t_rttmin = tp->t_rttmin;
235 xt->t_rttupdated = tp->t_rttupdated;
236 xt->max_sndwnd = tp->max_sndwnd;
237 xt->t_softerror = tp->t_softerror;
238 xt->t_oobflags = tp->t_oobflags;
239 xt->t_iobc = tp->t_iobc;
240 xt->snd_scale = tp->snd_scale;
241 xt->rcv_scale = tp->rcv_scale;
242 xt->request_r_scale = tp->request_r_scale;
243 xt->requested_s_scale = tp->requested_s_scale;
244 xt->ts_recent = tp->ts_recent;
245 xt->ts_recent_age = tp->ts_recent_age;
246 xt->last_ack_sent = tp->last_ack_sent;
247 xt->cc_send = tp->cc_send;
248 xt->cc_recv = tp->cc_recv;
249 xt->snd_recover = tp->snd_recover;
250 xt->snd_cwnd_prev = tp->snd_cwnd_prev;
251 xt->snd_ssthresh_prev = tp->snd_ssthresh_prev;
252 xt->t_badrxtwin = tp->t_badrxtwin;