Home
last modified time | relevance | path

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

/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
Dbcmip.h122 #define IPV6_TRAFFIC_CLASS(ipv6_body) \ argument
123 (((((uint8 *)(ipv6_body))[0] & 0x0f) << 4) | \
124 ((((uint8 *)(ipv6_body))[1] & 0xf0) >> 4))
126 #define IPV6_FLOW_LABEL(ipv6_body) \ argument
127 (((((uint8 *)(ipv6_body))[1] & 0x0f) << 16) | \
128 (((uint8 *)(ipv6_body))[2] << 8) | \
129 (((uint8 *)(ipv6_body))[3]))
131 #define IPV6_PAYLOAD_LEN(ipv6_body) \ argument
132 ((((uint8 *)(ipv6_body))[IPV6_PAYLOAD_LEN_OFFSET + 0] << 8) | \
133 ((uint8 *)(ipv6_body))[IPV6_PAYLOAD_LEN_OFFSET + 1])
[all …]