Home
last modified time | relevance | path

Searched refs:th_ack (Results 1 – 3 of 3) sorted by relevance

/Zephyr-Core-3.6.0/subsys/net/ip/
Dtcp_private.h19 #define th_ack(_x) ntohl(UNALIGNED_GET(&(_x)->th_ack)) macro
170 uint32_t th_ack; member
Dtcp.c308 " Ack=%u", th_ack(th)); in tcp_th()
1304 UNALIGNED_PUT(htonl(conn->ack), &th->th_ack); in tcp_header_add()
1450 UNALIGNED_PUT(th_pkt->th_ack, &th_rst->th_seq); in net_tcp_reply_rst()
1455 UNALIGNED_PUT(htonl(ack), &th_rst->th_ack); in net_tcp_reply_rst()
2869 if (FL(&fl, &, ACK, th_ack(th) == conn->seq && in tcp_in()
2965 if (FL(&fl, &, SYN | ACK, th && th_ack(th) == conn->seq)) { in tcp_in()
3007 if (net_tcp_seq_cmp(th_ack(th), conn->seq) > 0) { in tcp_in()
3008 uint32_t len_acked = th_ack(th) - conn->seq; in tcp_in()
3053 if (th && (net_tcp_seq_cmp(th_ack(th), conn->seq) == 0)) { in tcp_in()
3094 if (th && (net_tcp_seq_cmp(th_ack(th), conn->seq) > 0)) { in tcp_in()
[all …]
/Zephyr-Core-3.6.0/tests/net/tcp/src/
Dmain.c296 th->th_ack = htonl(ack); in tester_prepare_tcp_pkt()
1431 zassert_true(ntohl(th->th_ack) == 2, in handle_data_fin1_test()
1433 __func__, __LINE__, ntohl(th->th_ack)); in handle_data_fin1_test()
1446 zassert_true(ntohl(th->th_ack) == 2, in handle_data_fin1_test()
1448 __func__, __LINE__, ntohl(th->th_ack)); in handle_data_fin1_test()
1564 zassert_true(ntohl(th->th_ack) == 1, in handle_data_during_fin1_test()
1566 __func__, __LINE__, ntohl(th->th_ack)); in handle_data_during_fin1_test()
2043 zassert_equal(expected_ack, ntohl(th.th_ack), in handle_server_recv_out_of_order()
2046 expected_ack, ntohl(th.th_ack)); in handle_server_recv_out_of_order()
2204 zassert_equal(ntohl(th->th_ack), seq, "Invalid ACK value"); in handle_server_rst_on_closed_port()