Lines Matching refs:tcphdr
1614 * @param tcphdr pointer to a struct tcp_hdr
1617 tcp_debug_print(struct tcp_hdr *tcphdr)
1622 ntohs(tcphdr->src), ntohs(tcphdr->dest)));
1625 ntohl(tcphdr->seqno)));
1628 ntohl(tcphdr->ackno)));
1631 TCPH_HDRLEN(tcphdr),
1632 TCPH_FLAGS(tcphdr) >> 5 & 1,
1633 TCPH_FLAGS(tcphdr) >> 4 & 1,
1634 TCPH_FLAGS(tcphdr) >> 3 & 1,
1635 TCPH_FLAGS(tcphdr) >> 2 & 1,
1636 TCPH_FLAGS(tcphdr) >> 1 & 1,
1637 TCPH_FLAGS(tcphdr) & 1,
1638 ntohs(tcphdr->wnd)));
1639 tcp_debug_print_flags(TCPH_FLAGS(tcphdr));
1643 ntohs(tcphdr->chksum), ntohs(tcphdr->urgp)));