MINOR: buffer: replace bi_del() and bo_del() with b_del()
authorWilly Tarreau <w@1wt.eu>
Fri, 15 Jun 2018 08:28:05 +0000 (10:28 +0200)
committerWilly Tarreau <w@1wt.eu>
Thu, 19 Jul 2018 14:23:40 +0000 (16:23 +0200)
commite5f12ce7f22aed1d912e1eace7766c3a5c239cc9
tree697af8243ab165d1615555c7d5ac1f2cf8779b56
parenta1f78fb65241ee6780ddec088344a16513089822
MINOR: buffer: replace bi_del() and bo_del() with b_del()

Till now the callers had to know which one to call for specific use cases.
Let's fuse them now since a single one will remain after the API migration.
Given that bi_del() may only be used where o==0, just combine the two tests
by first removing output data then only input.
include/common/buf.h
include/common/buffer.h
include/proto/channel.h
src/mux_h2.c