Searched refs:hash_node (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/netinet/ |
H A D | siftr.c | 318 struct flow_hash_node *hash_node; in siftr_find_flow() local 328 LIST_FOREACH(hash_node, counter_list, nodes) { in siftr_find_flow() 337 if (hash_node->const_info.key == id) { in siftr_find_flow() 338 return hash_node; in siftr_find_flow() 350 struct flow_hash_node *hash_node; in siftr_new_hash_node() local 355 hash_node = malloc(sizeof(struct flow_hash_node), M_SIFTR_HASHNODE, in siftr_new_hash_node() 358 if (hash_node != NULL) { in siftr_new_hash_node() 360 hash_node->counter = 0; in siftr_new_hash_node() 361 hash_node->const_info = info; in siftr_new_hash_node() 362 LIST_INSERT_HEAD(counter_list, hash_node, nodes); in siftr_new_hash_node() [all …]
|
/freebsd/contrib/wpa/hs20/client/ |
H A D | osu_client.c | 307 xml_node_t *url_node, *hash_node; in download_cert() local 317 hash_node = get_node(ctx->xml, params, "CertSHA256Fingerprint"); in download_cert() 318 if (url_node == NULL || hash_node == NULL) in download_cert() 321 hash = xml_node_get_text(ctx->xml, hash_node); in download_cert()
|