]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: queue: replace the linked list with a tree
authorPatrick Hemmer <haproxy@stormcloud9.net>
Fri, 11 May 2018 16:52:31 +0000 (12:52 -0400)
committerWilly Tarreau <w@1wt.eu>
Fri, 10 Aug 2018 13:06:27 +0000 (15:06 +0200)
commit0355dabd7cf19bcb25afef41e666435f05f01e37
tree79bdc38f3882262b9b96c8d3accb2907af20f71f
parentda282f4a8f985df16e864058cb3a56b9c0e5f957
MINOR: queue: replace the linked list with a tree

We'll need trees to manage the queues by priorities. This change replaces
the list with a tree based on a single key. It's effectively a list but
allows us to get rid of the list management right now.
include/proto/queue.h
include/types/proxy.h
include/types/queue.h
include/types/server.h
src/hlua.c
src/proxy.c
src/queue.c
src/server.c