Searched refs:tcflow (Results 1 – 7 of 7) sorted by relevance
/Zephyr-Core-2.7.6/tests/net/6lo/src/ |
D | main.c | 548 .ipv6.tcflow = 0x00, 570 .ipv6.tcflow = 0x20, 592 .ipv6.tcflow = 0x21, 614 .ipv6.tcflow = 0x20, 636 .ipv6.tcflow = 0x23, 658 .ipv6.tcflow = 0x0, 680 .ipv6.tcflow = 0x0, 697 .ipv6.tcflow = 0x0, 717 .ipv6.tcflow = 0x20, 737 .ipv6.tcflow = 0x20, [all …]
|
/Zephyr-Core-2.7.6/tests/net/ieee802154/fragment/src/ |
D | main.c | 307 .ipv6.tcflow = 0x00, 324 .ipv6.tcflow = 0x20, 341 .ipv6.tcflow = 0x21, 358 .ipv6.tcflow = 0x20, 375 .ipv6.tcflow = 0x23, 392 .ipv6.tcflow = 0x0, 409 .ipv6.tcflow = 0x20, 426 .ipv6.tcflow = 0x20,
|
/Zephyr-Core-2.7.6/subsys/net/ip/ |
D | 6lo.c | 273 tcl = ((ipv6->vtc & 0x0F) << 4) | ((ipv6->tcflow & 0xF0) >> 4); in compress_tfl() 276 if (((ipv6->tcflow & 0x0F) == 0U) && (ipv6->flow == 0U)) { in compress_tfl() 277 if (((ipv6->vtc & 0x0F) == 0U) && ((ipv6->tcflow & 0xF0) == 0U)) { in compress_tfl() 292 if (((ipv6->vtc & 0x0F) == 0U) && (ipv6->tcflow & 0x30)) { in compress_tfl() 302 *inline_ptr = (tcl & 0xC0) | (ipv6->tcflow & 0x0F); in compress_tfl() 313 *inline_ptr = ipv6->tcflow & 0x0F; in compress_tfl() 849 ipv6->tcflow = ((tcl & 0x0F) << 4) | (*cursor & 0x0F); in uncompress_tfl() 859 ipv6->tcflow = ((tcl & 0x0F) << 4) | (*cursor & 0x0F); in uncompress_tfl() 874 ipv6->tcflow = (tcl & 0x0F) << 4; in uncompress_tfl() 881 ipv6->tcflow = 0U; in uncompress_tfl()
|
D | ipv6.c | 64 ipv6_hdr->tcflow = 0U; in net_ipv6_create()
|
/Zephyr-Core-2.7.6/tests/net/buf/src/ |
D | main.c | 44 uint8_t tcflow; member
|
/Zephyr-Core-2.7.6/include/net/ |
D | net_ip.h | 456 uint8_t tcflow; member
|
/Zephyr-Core-2.7.6/subsys/net/l2/canbus/ |
D | 6locan.c | 49 uint8_t tc = ((ip_hdr->vtc & 0x0F) << 4) | ((ip_hdr->tcflow & 0xF0 >> 4)); in canbus_print_ip_hdr() 50 uint32_t flow = ((ip_hdr->tcflow & 0x0F) << 16) | ip_hdr->flow; in canbus_print_ip_hdr()
|