]> git.ipfire.org Git - thirdparty/haproxy.git/commit
CLEANUP: server: use eb64_entry() not ebmb_entry() to convert an eb64
authorWilly Tarreau <w@1wt.eu>
Fri, 12 Sep 2025 13:49:48 +0000 (15:49 +0200)
committerWilly Tarreau <w@1wt.eu>
Tue, 16 Sep 2025 07:23:46 +0000 (09:23 +0200)
commitd1c5df68662e5335e2f25f0d6a0fef895984c026
treeaebfe81d072386819113932feede26af2612c083
parent3d18a0d4c245fc9c0d97764e5b5bbfdc4011ddd5
CLEANUP: server: use eb64_entry() not ebmb_entry() to convert an eb64

There were a few leftovers from an earlier version of the conn_hash_node
that was using ebmb nodes. A few calls to ebmb_first() and ebmb_entry()
were still present while acting on an eb64 tree. These are harmless as
one is just eb_first() and the other container_of(), but it's confusing
so let's clean them up.
src/server.c