Home
last modified time | relevance | path

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

/xnu-8020.101.4/bsd/netinet/
H A Dtcp_output.c2201 tp->t_comp_gencnt++; in tcp_output()
2203 if (tp->t_comp_gencnt <= TCP_ACK_COMPRESSION_DUMMY) { in tcp_output()
2204 tp->t_comp_gencnt = TCP_ACK_COMPRESSION_DUMMY + 1; in tcp_output()
2208 m->m_pkthdr.comp_gencnt = tp->t_comp_gencnt; in tcp_output()
H A Dtcp_subr.c927 m->m_pkthdr.comp_gencnt = tp->t_comp_gencnt; in tcp_respond()
1171 tp->t_comp_gencnt = random_32; in tcp_newtcpcb()
1172 if (tp->t_comp_gencnt <= TCP_ACK_COMPRESSION_DUMMY) { in tcp_newtcpcb()
1173 tp->t_comp_gencnt = TCP_ACK_COMPRESSION_DUMMY + 1; in tcp_newtcpcb()
H A Dtcp_var.h668 uint32_t t_comp_gencnt; /* Current compression generation-count */ member