blob: a9cb02fa011aab5d1ff8d66a90e7ad407b0f12ec (
plain)
1
2
3
4
5
|
int ht_insert_node(ecp_ht_table_t *table, DIRNode *node);
void ht_remove_node(ecp_ht_table_t *table, DIRNode *node);
void *ht_search_item(ecp_ht_table_t *table, ECPDirItem *dir_item);
int ht_insert_conn(ecp_ht_table_t *table, ECPConnection *conn);
void ht_remove_conn(ecp_ht_table_t *table, ECPConnection *conn);
|