hashtable.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * netlink/hashtable.h Netlink hashtable Utilities
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation version 2.1
  7. * of the License.
  8. *
  9. * Copyright (c) 2012 Cumulus Networks, Inc
  10. */
  11. #ifndef NETLINK_HASHTABLE_H_
  12. #define NETLINK_HASHTABLE_H_
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. typedef struct nl_hash_node {
  17. uint32_t key;
  18. uint32_t key_size;
  19. struct nl_object * obj;
  20. struct nl_hash_node * next;
  21. } nl_hash_node_t;
  22. typedef struct nl_hash_table {
  23. int size;
  24. nl_hash_node_t ** nodes;
  25. } nl_hash_table_t;
  26. /* Default hash table size */
  27. #define NL_MAX_HASH_ENTRIES 1024
  28. /* Access Functions */
  29. extern nl_hash_table_t * nl_hash_table_alloc(int size);
  30. extern void nl_hash_table_free(nl_hash_table_t *ht);
  31. extern int nl_hash_table_add(nl_hash_table_t *ht,
  32. struct nl_object *obj);
  33. extern int nl_hash_table_del(nl_hash_table_t *ht,
  34. struct nl_object *obj);
  35. extern struct nl_object * nl_hash_table_lookup(nl_hash_table_t *ht,
  36. struct nl_object *obj);
  37. extern uint32_t nl_hash(void *k, size_t length,
  38. uint32_t initval);
  39. #ifdef __cplusplus
  40. }
  41. #endif
  42. #endif /* NETLINK_HASHTABLE_H_ */