unsigned long util_ldap_url_node_hash(void *n) { util_url_node_t *node = (util_url_node_t *)n; return util_ald_hash_string(1, node->url); }
unsigned long util_ldap_dn_compare_node_hash(void *n) { return util_ald_hash_string(1, ((util_dn_compare_node_t *)n)->reqdn); }
unsigned long util_ldap_compare_node_hash(void *n) { util_compare_node_t *node = (util_compare_node_t *)n; return util_ald_hash_string(3, node->dn, node->attrib, node->value); }
/* Cache functions for search nodes */ unsigned long util_ldap_search_node_hash(void *n) { util_search_node_t *node = (util_search_node_t *)n; return util_ald_hash_string(1, ((util_search_node_t *)(node))->username); }
unsigned long util_ldap_dn_compare_node_hash(void *n) { util_dn_compare_node_t *node = n; return util_ald_hash_string(1, node->reqdn); }
/* Cache functions for search nodes */ unsigned long util_ldap_search_node_hash(void *n) { util_search_node_t *node = n; return util_ald_hash_string(1, node->username); }