blob: def6355233f9eaeaf307574963d04b0d0a2536c1 [file] [log] [blame]
#ifndef _TYPES_DICT_H
#define _TYPES_DICT_H
#include <haproxy/thread.h>
#include <import/ebpttree.h>
struct dict_entry {
struct ebpt_node value;
unsigned int refcount;
size_t len;
};
struct dict {
const char *name;
struct eb_root values;
__decl_thread(HA_RWLOCK_T rwlock);
};
#endif /* _TYPES_DICT_H */