Searched refs:tcp_header_length (Results 1 – 4 of 4) sorted by relevance
137 tcp_header_length = packet_bytearray[ETH_HLEN + ip_header_length + 12] #load Byte variable138 tcp_header_length = tcp_header_length & 0xF0 #mask bit 4..7 variable139 tcp_header_length = tcp_header_length >> 2 #SHR 4 ; SHL 2 -> SHR 2 variable142 payload_offset = ETH_HLEN + ip_header_length + tcp_header_length
198 tcp_header_length = packet_bytearray[ETH_HLEN + ip_header_length + 12] # load Byte variable199 tcp_header_length = tcp_header_length & 0xF0 # mask bit 4..7 variable200 tcp_header_length = tcp_header_length >> 2 # SHR 4 ; SHL 2 -> SHR 2 variable210 payload_offset = ETH_HLEN + ip_header_length + tcp_header_length
32 u32 tcp_header_length = 0; in http_filter() local55 tcp_header_length = tcp->offset << 2; //SHL 2 -> *4 multiply in http_filter()58 payload_offset = ETH_HLEN + ip_header_length + tcp_header_length; in http_filter()59 payload_length = ip->tlen - ip_header_length - tcp_header_length; in http_filter()
52 u32 tcp_header_length = 0; in http_filter() local84 tcp_header_length = tcp->offset << 2; //SHL 2 -> *4 multiply in http_filter()87 payload_offset = ETH_HLEN + ip_header_length + tcp_header_length; in http_filter()88 payload_length = ip->tlen - ip_header_length - tcp_header_length; in http_filter()