Searched refs:th_flags (Results 1 – 3 of 3) sorted by relevance
/Zephyr-latest/subsys/net/ip/ |
D | tcp_private.h | 21 #define th_flags(_x) UNALIGNED_GET(&(_x)->th_flags) macro 178 uint8_t th_flags; member 184 enum th_flags { enum
|
D | tcp.c | 350 "%s Seq=%u", tcp_flags(th_flags(th)), th_seq(th)); in tcp_th() 352 if (th_flags(th) & ACK) { in tcp_th() 925 uint8_t fl = th_get(pkt)->th_flags; in tcp_send_process_no_lock() 1362 UNALIGNED_PUT(flags, &th->th_flags); in tcp_header_add() 1471 if (th_pkt == NULL || (th_flags(th_pkt) & RST)) { in net_tcp_reply_rst() 1511 if (th_flags(th_pkt) & ACK) { in net_tcp_reply_rst() 1512 UNALIGNED_PUT(RST, &th_rst->th_flags); in net_tcp_reply_rst() 1517 UNALIGNED_PUT(RST | ACK, &th_rst->th_flags); in net_tcp_reply_rst() 2260 if (th_flags(th) & SYN && !(th_flags(th) & ACK)) { in tcp_recv() 2820 fl = th_flags(th) & ~(ECN | CWR); in tcp_in() [all …]
|
/Zephyr-latest/tests/net/tcp/src/ |
D | main.c | 145 if (!(th && FL(&th->th_flags, ==, flags))) { in verify_flags() 148 fun, line, th->th_flags, flags); in verify_flags() 293 th->th_flags = flags; in tester_prepare_tcp_pkt()
|