Searched refs:tcp_ackent (Results 1 – 4 of 4) sorted by relevance
/freebsd/sys/netinet/ |
H A D | tcp_lro_hpts.c | 70 build_ack_entry(struct tcp_ackent *ae, struct tcphdr *th, struct mbuf *m, in build_ack_entry() 215 if (M_TRAILINGSPACE(m) >= sizeof(struct tcp_ackent)) { in tcp_lro_get_last_if_ackcmp() 266 struct tcp_ackent *ack_ent; in do_bpf_strip_and_compress() 435 if (M_TRAILINGSPACE(nm) < sizeof(struct tcp_ackent)) { in do_bpf_strip_and_compress() 441 MPASS(M_TRAILINGSPACE(nm) >= sizeof(struct tcp_ackent)); in do_bpf_strip_and_compress() 445 ack_ent = mtod(nm, struct tcp_ackent *); in do_bpf_strip_and_compress() 446 idx = (nm->m_len / sizeof(struct tcp_ackent)); in do_bpf_strip_and_compress() 450 nm->m_len += sizeof(struct tcp_ackent); in do_bpf_strip_and_compress() 451 nm->m_pkthdr.len += sizeof(struct tcp_ackent); in do_bpf_strip_and_compress()
|
H A D | tcp_lro.h | 183 struct tcp_ackent { struct
|
/freebsd/sys/netinet/tcp_stacks/ |
H A D | rack_bbr_common.c | 457 KMOD_TCPSTAT_ADD(tcps_rcvtotal, (m->m_len / sizeof(struct tcp_ackent))); in ctf_process_inbound_raw()
|
H A D | rack.c | 15370 rack_log_input_packet(struct tcpcb *tp, struct tcp_rack *rack, struct tcp_ackent *ae, int ackval, u… in rack_log_input_packet() 15723 struct tcp_ackent *ae; in rack_do_compressed_ack_processing() 15771 KASSERT((m->m_len >= sizeof(struct tcp_ackent)), in rack_do_compressed_ack_processing() 15773 cnt = m->m_len / sizeof(struct tcp_ackent); in rack_do_compressed_ack_processing() 15794 ae = ((mtod(m, struct tcp_ackent *)) + i); in rack_do_compressed_ack_processing()
|