Home
last modified time | relevance | path

Searched refs:vhl (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/tests/net/icmpv4/src/
Dmain.c231 uint8_t vhl; in verify_echo_reply_with_opts() local
238 ret = net_pkt_read_u8(pkt, &vhl); in verify_echo_reply_with_opts()
243 vhl = (vhl & NET_IPV4_IHL_MASK) * 4U; in verify_echo_reply_with_opts()
244 opts_len = vhl - sizeof(struct net_ipv4_hdr); in verify_echo_reply_with_opts()
/Zephyr-latest/tests/net/ipv4_fragment/src/
Dmain.c209 zassert_equal(hdr->vhl, orig_hdr[offsetof(struct net_ipv4_hdr, vhl)], in check_ipv4_fragment_header()
381 zassert_equal(hdr->vhl, ipv4_udp[offsetof(struct net_ipv4_hdr, vhl)], in udp_data_received()
462 zassert_equal(hdr->vhl, ipv4_tcp[offsetof(struct net_ipv4_hdr, vhl)], in tcp_data_received()
/Zephyr-latest/subsys/net/ip/
Dipv4.c51 ipv4_hdr->vhl = 0x45; in net_ipv4_create_full()
122 ipv4_hdr->vhl = 0x40 | (0x0F & in net_ipv4_finalize()
269 hdr_len = (hdr->vhl & NET_IPV4_IHL_MASK) * 4U; in net_ipv4_input()
/Zephyr-latest/include/zephyr/net/
Dnet_ip.h568 uint8_t vhl; member