Lines Matching defs:tcphdr
2583 * @param tcphdr pointer to a struct tcp_hdr
2586 tcp_debug_print(struct tcp_hdr *tcphdr)
2591 lwip_ntohs(tcphdr->src), lwip_ntohs(tcphdr->dest)));
2594 lwip_ntohl(tcphdr->seqno)));
2597 lwip_ntohl(tcphdr->ackno)));
2600 TCPH_HDRLEN(tcphdr),
2601 (u16_t)(TCPH_FLAGS(tcphdr) >> 5 & 1),
2602 (u16_t)(TCPH_FLAGS(tcphdr) >> 4 & 1),
2603 (u16_t)(TCPH_FLAGS(tcphdr) >> 3 & 1),
2604 (u16_t)(TCPH_FLAGS(tcphdr) >> 2 & 1),
2605 (u16_t)(TCPH_FLAGS(tcphdr) >> 1 & 1),
2606 (u16_t)(TCPH_FLAGS(tcphdr) & 1),
2607 lwip_ntohs(tcphdr->wnd)));
2608 tcp_debug_print_flags(TCPH_FLAGS(tcphdr));
2612 lwip_ntohs(tcphdr->chksum), lwip_ntohs(tcphdr->urgp)));