| 123 | #endif |
| 124 | |
| 125 | static struct ipsec_iflist * |
| 126 | ipsec_idhash(uint32_t id) |
| 127 | { |
| 128 | |
| 129 | return (&V_ipsec_idhtbl[fnv_32_buf(&id, sizeof(id), |
| 130 | FNV1_32_INIT) & (IPSEC_HASH_SIZE - 1)]); |
| 131 | } |
| 132 | |
| 133 | static struct ipsec_iflist * |
| 134 | ipsec_srchash(const struct sockaddr *sa) |
no test coverage detected