]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: dict: Add dictionary new data structure.
authorFrédéric Lécaille <flecaille@haproxy.com>
Tue, 28 May 2019 12:47:17 +0000 (14:47 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 5 Jun 2019 06:33:35 +0000 (08:33 +0200)
commit4a3fef834c532affb1c9ba80717bb930a919d32b
tree22f7950169adc5c4682177122fe65025ea64454a
parent0e8db97df40787fc7ac7ae83a66e4bcc28a79394
MINOR: dict: Add dictionary new data structure.

This patch adds minimalistic definitions to implement dictionary new data structure
which is an ebtree of ebpt_node structs with strings as keys. Note that this has nothing
to see with real dictionary data structure (maps of keys in association with values).
Makefile
include/common/hathreads.h
include/proto/dict.h [new file with mode: 0644]
include/types/dict.h [new file with mode: 0644]
src/dict.c [new file with mode: 0644]