Lines Matching refs:l4info
2253 flow_l4info_t *l4info = &s->fs_l4info; in flow_transport_lport_match() local
2257 fd->fd_local_port == l4info->l4_hash_port); in flow_transport_lport_match()
2265 flow_l4info_t *l4info = &s->fs_l4info; in flow_transport_rport_match() local
2269 fd->fd_remote_port == l4info->l4_hash_port); in flow_transport_rport_match()
2282 flow_l4info_t *l4info = &s->fs_l4info; in flow_transport_hash() local
2292 l4info->l4_hash_port = dst_or_src ? l4info->l4_dst_port : in flow_transport_hash()
2293 l4info->l4_src_port; in flow_transport_hash()
2295 return ((l4info->l4_hash_port ^ (proto << 4)) % ft->ft_size); in flow_transport_hash()
2310 flow_l4info_t *l4info = &s->fs_l4info; in flow_transport_accept() local
2321 l4info->l4_start = l4_start; in flow_transport_accept()
2335 l4info->l4_src_port = tcph->th_sport; in flow_transport_accept()
2336 l4info->l4_dst_port = tcph->th_dport; in flow_transport_accept()
2345 l4info->l4_src_port = udph->uh_sport; in flow_transport_accept()
2346 l4info->l4_dst_port = udph->uh_dport; in flow_transport_accept()
2355 l4info->l4_src_port = sctph->sh_sport; in flow_transport_accept()
2356 l4info->l4_dst_port = sctph->sh_dport; in flow_transport_accept()