Lines Matching refs:matchentry
549 struct soflow_hash_entry matchentry = { }; in soflow_db_lookup_entry_internal() local
562 soflow_fill_hash_entry_from_address(&matchentry, TRUE, local, FALSE); in soflow_db_lookup_entry_internal()
564 soflow_fill_hash_entry_from_inp(&matchentry, TRUE, inp, FALSE); in soflow_db_lookup_entry_internal()
567 soflow_fill_hash_entry_from_address(&matchentry, FALSE, remote, FALSE); in soflow_db_lookup_entry_internal()
569 soflow_fill_hash_entry_from_inp(&matchentry, FALSE, inp, FALSE); in soflow_db_lookup_entry_internal()
571 matchentry.soflow_debug = SOFLOW_ENABLE_DEBUG(db->soflow_db_so, (&matchentry)); in soflow_db_lookup_entry_internal()
572 SOFLOW_ENTRY_LOG(LOG_DEBUG, db->soflow_db_so, &matchentry, true, "Looking for entry"); in soflow_db_lookup_entry_internal()
575 hashkey_faddr = matchentry.soflow_faddr.addr6.s6_addr32[3]; in soflow_db_lookup_entry_internal()
576 hashkey_laddr = (remoteOnly == false) ? matchentry.soflow_laddr.addr6.s6_addr32[3] : 0; in soflow_db_lookup_entry_internal()
578 hashkey_faddr = matchentry.soflow_faddr.addr46.ia46_addr4.s_addr; in soflow_db_lookup_entry_internal()
579 hashkey_laddr = (remoteOnly == false) ? matchentry.soflow_laddr.addr46.ia46_addr4.s_addr : 0; in soflow_db_lookup_entry_internal()
582 hashkey_fport = matchentry.soflow_fport; in soflow_db_lookup_entry_internal()
583 hashkey_lport = (remoteOnly == false || withLocalPort == true) ? matchentry.soflow_lport : 0; in soflow_db_lookup_entry_internal()
591 if (soflow_match_entries_v6(nextentry, &matchentry, remoteOnly)) { in soflow_db_lookup_entry_internal()
596 if (soflow_match_entries_v4(nextentry, &matchentry, remoteOnly)) { in soflow_db_lookup_entry_internal()
604 …SOFLOW_ENTRY_LOG(LOG_DEBUG, db->soflow_db_so, &matchentry, matchentry.soflow_debug, "Entry not fou… in soflow_db_lookup_entry_internal()