| 37 | |
| 38 | static struct node_id nodeidx_id(const ptrint_t *pidx); |
| 39 | static bool nodeidx_eq_id(const ptrint_t *pidx, const struct node_id id) |
| 40 | { |
| 41 | struct node_id pidxid = nodeidx_id(pidx); |
| 42 | return node_id_eq(&pidxid, &id); |
| 43 | } |
| 44 | static size_t nodeid_hash(const struct node_id id) |
| 45 | { |
| 46 | return siphash24(siphash_seed(), &id, PUBKEY_CMPR_LEN); |
nothing calls this directly
no test coverage detected