Searched refs:ipv6_body (Results 1 – 1 of 1) sorted by relevance
122 #define IPV6_TRAFFIC_CLASS(ipv6_body) \ argument123 (((((uint8 *)(ipv6_body))[0] & 0x0f) << 4) | \124 ((((uint8 *)(ipv6_body))[1] & 0xf0) >> 4))126 #define IPV6_FLOW_LABEL(ipv6_body) \ argument127 (((((uint8 *)(ipv6_body))[1] & 0x0f) << 16) | \128 (((uint8 *)(ipv6_body))[2] << 8) | \129 (((uint8 *)(ipv6_body))[3]))131 #define IPV6_PAYLOAD_LEN(ipv6_body) \ argument132 ((((uint8 *)(ipv6_body))[IPV6_PAYLOAD_LEN_OFFSET + 0] << 8) | \133 ((uint8 *)(ipv6_body))[IPV6_PAYLOAD_LEN_OFFSET + 1])[all …]