Lines Matching refs:tfe
3356 struct tflow_entry *tfe; in ta_dump_fhash_tentry() local
3359 tfe = &tent->k.flow; in ta_dump_fhash_tentry()
3361 tfe->af = ent->af; in ta_dump_fhash_tentry()
3362 tfe->proto = ent->proto; in ta_dump_fhash_tentry()
3363 tfe->dport = htons(ent->dport); in ta_dump_fhash_tentry()
3364 tfe->sport = htons(ent->sport); in ta_dump_fhash_tentry()
3370 tfe->a.a4.sip.s_addr = htonl(fe4->sip.s_addr); in ta_dump_fhash_tentry()
3371 tfe->a.a4.dip.s_addr = htonl(fe4->dip.s_addr); in ta_dump_fhash_tentry()
3376 tfe->a.a6.sip6 = fe6->sip6; in ta_dump_fhash_tentry()
3377 tfe->a.a6.dip6 = fe6->dip6; in ta_dump_fhash_tentry()
3394 struct tflow_entry *tfe; in tei_to_fhash_ent() local
3396 tfe = (struct tflow_entry *)tei->paddr; in tei_to_fhash_ent()
3399 ent->proto = tfe->proto; in tei_to_fhash_ent()
3400 ent->dport = ntohs(tfe->dport); in tei_to_fhash_ent()
3401 ent->sport = ntohs(tfe->sport); in tei_to_fhash_ent()
3406 fe4->sip.s_addr = ntohl(tfe->a.a4.sip.s_addr); in tei_to_fhash_ent()
3407 fe4->dip.s_addr = ntohl(tfe->a.a4.dip.s_addr); in tei_to_fhash_ent()
3412 fe6->sip6 = tfe->a.a6.sip6; in tei_to_fhash_ent()
3413 fe6->dip6 = tfe->a.a6.dip6; in tei_to_fhash_ent()