Home
last modified time | relevance | path

Searched defs:tcp_header_length (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/bcc/examples/networking/http_filter/
H A Dhttp-parse-simple.py137 tcp_header_length = packet_bytearray[ETH_HLEN + ip_header_length + 12] #load Byte variable
138 tcp_header_length = tcp_header_length & 0xF0 #mask bit 4..7 variable
139 tcp_header_length = tcp_header_length >> 2 #SHR 4 ; SHL 2 -> SHR 2 variable
H A Dhttp-parse-complete.py198 tcp_header_length = packet_bytearray[ETH_HLEN + ip_header_length + 12] # load Byte variable
199 tcp_header_length = tcp_header_length & 0xF0 # mask bit 4..7 variable
200 tcp_header_length = tcp_header_length >> 2 # SHR 4 ; SHL 2 -> SHR 2 variable
H A Dhttp-parse-simple.c32 u32 tcp_header_length = 0; in http_filter() local
H A Dhttp-parse-complete.c52 u32 tcp_header_length = 0; in http_filter() local