Searched refs:tcp_ackent (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/sys/netinet/
H A Dtcp_lro.h173 struct tcp_ackent { struct
H A Dtcp_lro.c1115 if (M_TRAILINGSPACE(m) >= sizeof(struct tcp_ackent)) {
1494 build_ack_entry(struct tcp_ackent *ae, struct tcphdr *th, struct mbuf *m,
1535 struct tcp_ackent *ack_ent;
1653 if (M_TRAILINGSPACE(nm) < sizeof(struct tcp_ackent)) {
1659 MPASS(M_TRAILINGSPACE(nm) >= sizeof(struct tcp_ackent));
1663 ack_ent = mtod(nm, struct tcp_ackent *);
1664 idx = (nm->m_len / sizeof(struct tcp_ackent));
1668 nm->m_len += sizeof(struct tcp_ackent);
1669 nm->m_pkthdr.len += sizeof(struct tcp_ackent);
/freebsd-13-stable/sys/netinet/tcp_stacks/
H A Drack_bbr_common.c495 KMOD_TCPSTAT_ADD(tcps_rcvtotal, (m->m_len / sizeof(struct tcp_ackent)));
H A Drack.c12666 rack_log_input_packet(struct tcpcb *tp, struct tcp_rack *rack, struct tcp_ackent *ae, int ackval, uint32_t high_seq)
12836 struct tcp_ackent *ae;
12859 KASSERT((m->m_len >= sizeof(struct tcp_ackent)),
12861 cnt = m->m_len / sizeof(struct tcp_ackent);
12884 ae = ((mtod(m, struct tcp_ackent *)) + i);

Completed in 280 milliseconds