/src/sys/netinet/ |
tcp_seq.h | 60 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
|
tcp_sack.c | 270 /* If the ACK is outside [snd_una, snd_max], ignore the SACK options. */ 271 if (SEQ_LT(th->th_ack, tp->snd_una) || SEQ_GT(th->th_ack, tp->snd_max)) 281 acked = (SEQ_GT(th->th_ack, tp->snd_una)) ? th->th_ack : tp->snd_una; 406 tcp_seq lastack = SEQ_GT(th->th_ack, tp->snd_una) ? 407 th->th_ack : tp->snd_una; 454 if (SEQ_LT(cur->rxmit, tp->snd_una)) { 540 printf("snd_una=%" PRIu32 ", snd_max=%" PRIu32 "\n", 541 tp->snd_una, tp->snd_max);
|
tcp_timer.c | 322 SEQ_GEQ(tp->t_pmtud_th_seq, tp->snd_una) && 323 SEQ_LT(tp->t_pmtud_th_seq, (int)(tp->snd_una + tp->t_ourmss))) { 355 tp->snd_fack = tp->snd_una; 416 tp->snd_nxt = tp->snd_una; 558 * Using sequence number tp->snd_una-1 568 tp->snd_una - 1, 0); 615 tp->snd_fack = tp->snd_una;
|
tcp_input.c | 1763 if ((tiflags & TH_ECE) && SEQ_GEQ(tp->snd_una, tp->snd_recover)) 1838 if (SEQ_GT(th->th_ack, tp->snd_una) && 1851 acked = th->th_ack - tp->snd_una; 1867 tp->snd_una = th->th_ack; 1868 tp->snd_fack = tp->snd_una; 1869 if (SEQ_LT(tp->snd_high, tp->snd_una)) 1870 tp->snd_high = tp->snd_una; 1882 tp->snd_wl2 = tp->snd_una; 1895 if (tp->snd_una == tp->snd_max) 1911 } else if (th->th_ack == tp->snd_una & [all...] |
tcp_output.c | 555 idle = (tp->snd_max == tp->snd_una); 612 (tp->snd_nxt - tp->snd_una)); 673 off = tp->snd_nxt - tp->snd_una; 726 off = p->rxmit - tp->snd_una; 841 tp->snd_nxt = tp->snd_una; 881 win >= (so->so_snd.sb_cc - (tp->snd_nxt - tp->snd_una))) { 910 if (SEQ_LT(p->rxmit + len, tp->snd_una + so->so_snd.sb_cc)) 992 if (SEQ_GT(tp->snd_up, tp->snd_una)) 999 if (TCP_SACK_ENABLED(tp) && SEQ_GT(tp->snd_max, tp->snd_una) && 1251 else if (SEQ_GT(tp->snd_up, tp->snd_una)) [all...] |
tcp_debug.c | 212 tp->rcv_nxt, tp->rcv_wnd, tp->rcv_up, tp->snd_una, tp->snd_nxt,
|
tcp_congctl.c | 604 int acked = th->th_ack - tp->snd_una; 698 * snd_una has not yet been updated and the socket's send 700 * have to leave snd_una as it was to get the correct data 723 if (((th->th_ack - tp->snd_una) / tp->t_segsz) > 2) 735 * snd_una is not yet updated when we're called 737 tp->snd_cwnd = tp->t_segsz + (th->th_ack - tp->snd_una); 744 * tp->snd_una not updated yet. 746 tp->snd_cwnd -= (th->th_ack - tp->snd_una -
|
tcp_var.h | 262 tcp_seq snd_una; /* send unacknowledged */ member in struct:tcpcb 412 (SEQ_GT(tp->snd_fack, tp->snd_una + tcprexmtthresh * tp->t_segsz)))
|
tcp_subr.c | 1446 if (SEQ_LT(seq, tp->snd_una) || SEQ_GT(seq, tp->snd_max)) 1587 tp->snd_nxt = tp->sack_newdata = tp->snd_una; 1648 tp->snd_nxt = tp->sack_newdata = tp->snd_una;
|
tcp_syncache.c | 766 tp->snd_up = tp->snd_una;
|
tcp_usrreq.c | 1081 tp->snd_up = tp->snd_una + so->so_snd.sb_cc;
|
/src/usr.sbin/trpt/ |
trpt.c | 510 printf("\trcv_nxt %x rcv_wnd %lx snd_una %x snd_nxt %x snd_max %x\n", 511 tp->rcv_nxt, tp->rcv_wnd, tp->snd_una, tp->snd_nxt,
|
/src/sys/fs/nfs/server/ |
nfs_nfsdcache.c | 839 nfsrc_trimcache(u_int64_t sockref, uint32_t snd_una, int final) 853 if (SEQ_GEQ(snd_una, rp->rc_tcpseq)) {
|
/src/sys/dev/pci/cxgb/ |
cxgb_t3_cpl.h | 903 __be32 snd_una; member in struct:cpl_wr_ack
|
/src/usr.bin/netstat/ |
inet.c | 1097 printf("snd_una %u, snd_nxt %u, snd_up %u\n", 1098 tcpcb.snd_una, tcpcb.snd_nxt, tcpcb.snd_up);
|
inet6.c | 1547 printf("snd_una %u, snd_nxt %u, snd_up %u\n", 1548 mypcb.snd_una, mypcb.snd_nxt, mypcb.snd_up);
|