Home
last modified time | relevance | path

Searched refs:recv_options (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/subsys/net/ip/
Dtcp_private.h134 MIN((_conn)->recv_options.mss_found ? (_conn)->recv_options.mss \
277 struct tcp_options recv_options; member
Dtcp.c1089 static bool tcp_options_check(struct tcp_options *recv_options, in tcp_options_check() argument
1100 recv_options->mss_found = false; in tcp_options_check()
1101 recv_options->wnd_found = false; in tcp_options_check()
1136 recv_options->mss = in tcp_options_check()
1138 recv_options->mss_found = true; in tcp_options_check()
1139 NET_DBG("MSS=%hu", recv_options->mss); in tcp_options_check()
1147 recv_options->window = opt; in tcp_options_check()
1148 recv_options->wnd_found = true; in tcp_options_check()
2871 if (tcp_options_len && !tcp_options_check(&conn->recv_options, pkt, in tcp_in()