OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ip_body
(Results
1 - 2
of
2
) sorted by null
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bcmip.h
39
#define IP_VER(
ip_body
) \
40
((((uint8 *)(
ip_body
))[IP_VER_OFFSET] & IP_VER_MASK) >> IP_VER_SHIFT)
143
#define IP_TOS46(
ip_body
) \
144
(IP_VER(
ip_body
) == IP_VER_4 ? IPV4_TOS(
ip_body
) : \
145
IP_VER(
ip_body
) == IP_VER_6 ? IPV6_TRAFFIC_CLASS(
ip_body
) : 0)
/hardware/broadcom/wlan/bcmdhd/dhdutil/
bcmutils.c
1145
uint8 *
ip_body
= pktdata + sizeof(struct ethervlan_header);
local
1146
uint8 tos_tc = IP_TOS46(
ip_body
);
1172
uint8 *
ip_body
= pktdata + sizeof(struct ether_header);
local
1173
uint8 tos_tc = IP_TOS46(
ip_body
);
[
all
...]
Completed in 134 milliseconds