Lines Matching refs:ports
523 * On a labeled system, we must treat bindings to ports
564 #define IPCL_CONN_HASH(src, ports, ipst) \
565 ((unsigned)(ntohl((src)) ^ ((ports) >> 24) ^ ((ports) >> 16) ^ \
566 ((ports) >> 8) ^ (ports)) % (ipst)->ips_ipcl_conn_fanout_size)
568 #define IPCL_CONN_HASH_V6(src, ports, ipst) \
569 IPCL_CONN_HASH(V4_PART_OF_V6((src)), (ports), (ipst))
571 #define IPCL_CONN_MATCH(connp, proto, src, dst, ports) \
573 (connp)->conn_ports == (ports) && \
578 #define IPCL_CONN_MATCH_V6(connp, proto, src, dst, ports) \
580 (connp)->conn_ports == (ports) && \