Home
last modified time | relevance | path

Searched refs:tmp_ports (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/net/
H A Dcolo.c100 void extract_ip_and_port(uint32_t tmp_ports, ConnectionKey *key, in extract_ip_and_port() argument
106 key->src_port = ntohs(tmp_ports & 0xffff); in extract_ip_and_port()
107 key->dst_port = ntohs(tmp_ports >> 16); in extract_ip_and_port()
111 key->src_port = ntohs(tmp_ports >> 16); in extract_ip_and_port()
112 key->dst_port = ntohs(tmp_ports & 0xffff); in extract_ip_and_port()
118 uint32_t tmp_ports = 0; in fill_connection_key() local
129 tmp_ports = *(uint32_t *)(pkt->transport_header); in fill_connection_key()
132 tmp_ports = *(uint32_t *)(pkt->transport_header + 4); in fill_connection_key()
138 extract_ip_and_port(tmp_ports, key, pkt, reverse); in fill_connection_key()
H A Dcolo.h93 void extract_ip_and_port(uint32_t tmp_ports, ConnectionKey *key,