Searched refs:t_comp_ack_gencnt (Results 1 – 3 of 3) sorted by relevance
2657 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()
948 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()
822 uint32_t t_comp_ack_gencnt; /* Current compression generation-count for ACKs */ member