MINOR: stream: rename {srv,prx}_queue_size to *_queue_pos
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:04:14 +0000 (15:04 +0200)
commitffe5e8c638c677b630b11eb1babf44dd322112de
treeb1c1ef0455ea6ca93283bff141e7599a3d3deb89
parent66425e31b5216fa5e24d02f28ef25650936a6ae6
MINOR: stream: rename {srv,prx}_queue_size to *_queue_pos

The current name is misleading as it implies a queue size, but the value
instead indicates a position in the queue.
The value is only the queue size at the exact moment the element is enqueued.
Soon we will gain the ability to insert anywhere into the queue, upon which
clarity of the name is more important.
include/types/stream.h
src/log.c
src/proto_http.c
src/queue.c
src/stream.c