Searched refs:TCPH_FLAGS (Results 1 – 7 of 7) sorted by relevance
87 #define TCPH_FLAGS(phdr) ((u8_t)((lwip_ntohs((phdr)->_hdrlen_rsvd_flags) & TCP_FLAGS))) macro89 …CPH_HDRLEN_SET(phdr, len) (phdr)->_hdrlen_rsvd_flags = lwip_htons(((len) << 12) | TCPH_FLAGS(phdr))
234 flags = TCPH_FLAGS(tcphdr);389 tcp_debug_print_flags(TCPH_FLAGS(tcphdr));576 if (!(TCPH_FLAGS(tcphdr) & TCP_RST)) {1070 if (TCPH_FLAGS(cseg->tcphdr) & TCP_FIN) {1081 if (TCPH_FLAGS(next->tcphdr) & TCP_FIN) {1476 if (TCPH_FLAGS(inseg.tcphdr) & TCP_FIN) {1484 if (TCPH_FLAGS(inseg.tcphdr) & TCP_SYN) {1497 if (TCPH_FLAGS(inseg.tcphdr) & TCP_FIN) {1533 if (TCPH_FLAGS(inseg.tcphdr) & TCP_SYN) {1570 if (TCPH_FLAGS(inseg.tcphdr) & TCP_FIN) {[all …]
2430 (u16_t)(TCPH_FLAGS(tcphdr) >> 5 & 1), in tcp_debug_print()2431 (u16_t)(TCPH_FLAGS(tcphdr) >> 4 & 1), in tcp_debug_print()2432 (u16_t)(TCPH_FLAGS(tcphdr) >> 3 & 1), in tcp_debug_print()2433 (u16_t)(TCPH_FLAGS(tcphdr) >> 2 & 1), in tcp_debug_print()2434 (u16_t)(TCPH_FLAGS(tcphdr) >> 1 & 1), in tcp_debug_print()2435 (u16_t)(TCPH_FLAGS(tcphdr) & 1), in tcp_debug_print()2437 tcp_debug_print_flags(TCPH_FLAGS(tcphdr)); in tcp_debug_print()
904 split_flags = TCPH_FLAGS(useg->tcphdr); in tcp_split_unsent_seg()1015 if ((TCPH_FLAGS(last_unsent->tcphdr) & (TCP_SYN | TCP_FIN | TCP_RST)) == 0) { in tcp_send_fin()1331 (TCPH_FLAGS(seg->tcphdr) & TCP_RST) == 0); in tcp_output()2212 is_fin = ((TCPH_FLAGS(seg->tcphdr) & TCP_FIN) != 0) && (seg->len == 0); in tcp_zero_window_probe()
191 if ((TCPH_FLAGS(th) & (TCP_SYN|TCP_FIN|TCP_RST|TCP_ACK)) != TCP_ACK) { in vj_compress_tcp()303 if (TCPH_FLAGS(th) & TCP_URG) { in vj_compress_tcp()387 if (TCPH_FLAGS(th) & TCP_PSH) { in vj_compress_tcp()
43 return TCPH_FLAGS(&tcphdr); in get_tcp_flags_from_packet()231 EXPECT(TCPH_FLAGS(&tcphdr) & TCP_SYN); in START_TEST()
152 #define TCP_TCPLEN(seg) ((seg)->len + (((TCPH_FLAGS((seg)->tcphdr) & (TCP_FIN | TCP_SYN)) != 0) ? 1…
Completed in 29 milliseconds