Home
last modified time | relevance | path

Searched refs:t_comp_ack_gencnt (Results 1 – 3 of 3) sorted by relevance

/xnu-11417.101.15/bsd/netinet/
H A Dtcp_output.c2657 tp->t_comp_ack_gencnt++; in tcp_output()
2661 if (tp->t_comp_ack_gencnt <= TCP_ACK_COMPRESSION_DUMMY || in tcp_output()
2662 tp->t_comp_ack_gencnt > INT_MAX) { in tcp_output()
2663 tp->t_comp_ack_gencnt = TCP_ACK_COMPRESSION_DUMMY + 1; in tcp_output()
2667 m->m_pkthdr.comp_gencnt = tp->t_comp_ack_gencnt; in tcp_output()
H A Dtcp_subr.c948 m->m_pkthdr.comp_gencnt = tp->t_comp_ack_gencnt; in tcp_respond()
1214 tp->t_comp_ack_gencnt = random_32; in tcp_newtcpcb()
1215 if (tp->t_comp_ack_gencnt <= TCP_ACK_COMPRESSION_DUMMY || in tcp_newtcpcb()
1216 tp->t_comp_ack_gencnt > INT_MAX) { in tcp_newtcpcb()
1217 tp->t_comp_ack_gencnt = TCP_ACK_COMPRESSION_DUMMY + 1; in tcp_newtcpcb()
H A Dtcp_var.h822 uint32_t t_comp_ack_gencnt; /* Current compression generation-count for ACKs */ member