Searched refs:ipv6_body (Results 1 – 6 of 6) sorted by relevance
144 #define IPV6_TRAFFIC_CLASS(ipv6_body) \ argument145 (((((uint8 *)(ipv6_body))[0] & 0x0f) << 4) | \146 ((((uint8 *)(ipv6_body))[1] & 0xf0) >> 4))148 #define IPV6_FLOW_LABEL(ipv6_body) \ argument149 (((((uint8 *)(ipv6_body))[1] & 0x0f) << 16) | \150 (((uint8 *)(ipv6_body))[2] << 8) | \151 (((uint8 *)(ipv6_body))[3]))153 #define IPV6_PAYLOAD_LEN(ipv6_body) \ argument154 ((((uint8 *)(ipv6_body))[IPV6_PAYLOAD_LEN_OFFSET + 0] << 8) | \155 ((uint8 *)(ipv6_body))[IPV6_PAYLOAD_LEN_OFFSET + 1])[all …]
157 #define IPV6_TRAFFIC_CLASS(ipv6_body) \ argument158 (((((uint8 *)(ipv6_body))[0] & 0x0f) << 4) | \159 ((((uint8 *)(ipv6_body))[1] & 0xf0) >> 4))161 #define IPV6_FLOW_LABEL(ipv6_body) \ argument162 (((((uint8 *)(ipv6_body))[1] & 0x0f) << 16) | \163 (((uint8 *)(ipv6_body))[2] << 8) | \164 (((uint8 *)(ipv6_body))[3]))166 #define IPV6_PAYLOAD_LEN(ipv6_body) \ argument167 ((((uint8 *)(ipv6_body))[IPV6_PAYLOAD_LEN_OFFSET + 0] << 8) | \168 ((uint8 *)(ipv6_body))[IPV6_PAYLOAD_LEN_OFFSET + 1])[all …]
136 #define IPV6_TRAFFIC_CLASS(ipv6_body) \ argument137 (((((uint8 *)(ipv6_body))[0] & 0x0f) << 4) | \138 ((((uint8 *)(ipv6_body))[1] & 0xf0) >> 4))140 #define IPV6_FLOW_LABEL(ipv6_body) \ argument141 (((((uint8 *)(ipv6_body))[1] & 0x0f) << 16) | \142 (((uint8 *)(ipv6_body))[2] << 8) | \143 (((uint8 *)(ipv6_body))[3]))145 #define IPV6_PAYLOAD_LEN(ipv6_body) \ argument146 ((((uint8 *)(ipv6_body))[IPV6_PAYLOAD_LEN_OFFSET + 0] << 8) | \147 ((uint8 *)(ipv6_body))[IPV6_PAYLOAD_LEN_OFFSET + 1])[all …]